// Body
$body-bg: #f8fafc;
$body-color: #1f2933;

// Typography
$font-family-sans-serif: 'Ubuntu Sans', sans-serif;
$font-size-base: 1rem;
$line-height-base: 1.6;

$colors: (
    'green': #199801,
    'blue': #015ea6,
    'red': #a60101,
    'yellow': #f2c002,
    'purple': #6b2995
);

$primary: map-get($colors, 'blue');
$secondary: #5b6670;
$success: map-get($colors, 'green');
$info: map-get($colors, 'purple');
$warning: map-get($colors, 'yellow');
$danger: map-get($colors, 'red');
$light: #f8fafc;
$dark: #111827;

$theme-colors: (
    'primary': $primary,
    'secondary': $secondary,
    'success': $success,
    'info': $info,
    'warning': $warning,
    'danger': $danger,
    'light': $light,
    'dark': $dark
);
