summaryrefslogtreecommitdiff
path: root/src/assets/styles/_colors.scss
blob: 28bfe8907218102efe9f944d1aa8cd425d15b50b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// SASS Color Variables
$black: #000;
$white: #fff;

$blue-100: #eff2fb;
$blue-500: #2d60e5;

$green-100: #ecfdf1;
$green-500: #0a7d06;

$red-100: #feeeed;
$red-500: #da1416;

$yellow-100: #fff8e4;
$yellow-500: #efc100;

$gray-100: #fafafa;
$gray-200: #f4f4f4;
$gray-300: #dcdee0;
$gray-400: #ccc;
$gray-500: #b3b3b3;
$gray-600: #999999;
$gray-700: #666666;
$gray-800: #333333;
$gray-900: #161616;

// SASS Base Color Variables
$blue: $blue-500;
$green: $green-500;
$red: $red-500;
$yellow: $yellow-500;

// Bootstrap will generate CSS variables for
// all of the colors in this map.
// https://getbootstrap.com/docs/4.0/getting-started/theming/#css-variables
$colors: (
  "blue": $blue,
  "green": $green,
  "red": $red,
  "yellow": $yellow,
);

// SASS Theme Color Variables
// Can be used as variants
$danger: $red;
$dark: $gray-900;
$info: $blue;
$light: $gray-100;
$primary: $blue;
$secondary: $gray-800;
$success: $green;
$warning: $yellow;

// Sass Color Variable Accents
// Used for component styles and are
// not available as variants
$danger-light: $red-100;
$info-light: $blue-100;
$warning-light: $yellow-100;
$success-light: $green-100;

// Bootstrap will generate CSS variables for
// all of the colors in this map.
// https://getbootstrap.com/docs/4.0/getting-started/theming/#css-variables
$theme-colors: (
  "primary": $primary,
  "secondary": $secondary,
  "dark": $dark,
  "light": $light,
  "danger": $danger,
  "info": $info,
  "success": $success,
  "warning": $warning
);