﻿/* =============================================
   00_TOKENS — базовые дизайн-токены проекта
   ============================================= */

:root {
    --mainColor: #262A24;
    --whiteColor: #FFFFFF;
    --grayColor: #F5F5F5;
    --greenColor1: #19463E;
    --greenColor2: #235C52;
    --greenColor3: #057D55;
    --greenColor4: #079E6C;
    --greenColor5: #94AFAA;
    --greenColor6: #C5E6DC;
    --lightRed: #FFE5E5;
    --redColor: #FE5151;
    --blueColor: #5267DD;

    --font-family: "Geologica", sans-serif;
    --font-icon: "iconfont";

    --text-xs: 12px;
    --text-sm: 14px;
    --text-md: 16px;
    --text-lg: 18px;
    --text-xl: 24px;

    --space-1: 4px;
    --space-2: 8px;
    --space-3: 10px;
    --space-4: 16px;
    --space-5: 20px;
    --space-8: 32px;

    --radius-sm: 10px;
    --radius-md: 20px;

    --transition-normal: 0.3s ease;
}
