-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy path_variables.scss
77 lines (74 loc) · 1.66 KB
/
_variables.scss
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
75
76
77
$colors: (
'oldblue': #0088ce,
'blue': #303383,
'darkblue': #16183d,
'verydarkblue': #0e0f26,
'purple': #6e1e78,
'pink': #a1006b,
'red': #cd0037,
'orange': #e05206,
'yellow': #ffb612,
'green': #82be00,
'teal': #d2e100,
'cyan': #009aa6,
'white': #fff,
'black': #000,
'gray': #333,
'gray-dark': #343a40,
'primary': #303383,
'primary-dark': #202258,
'secondary': #4d4f53,
'success': #82be00,
'info': #009aa6,
'warning': #ffb612,
'danger': #cd0037,
'light': #f2f2f2,
'dark': #343a40,
'coolgray1': #f2f2f2,
'coolgray3': #d7d7d7,
'coolgray5': #b9b9b9,
'coolgray7': #a0a0a0,
'coolgray9': #747678,
'coolgray11': #4d4f53,
'coolgray13': #333333,
'coolgray15': #202020,
// OSRD Design System
'ambiantB5': #faf9f5,
'ambiantB10': #f7f6ee,
'ambiantB15': #f2f0e4,
'black5': rgba(0, 0, 0, 0.05),
'black10': rgba(0, 0, 0, 0.1),
'black100': #000000,
'error5': #ffeeed,
'error60': #d91c1c,
'error80': #6b0000,
'grey20': #d3d1cf,
'grey30': #b6b2af,
'grey40': #94918e,
'grey50': #797671,
'grey60': #5c5955,
'grey90': #1f1b17,
'grey80': #312e2b,
'info5': #e6f7ff,
'info30': #70c1e5,
'info60': #216482,
'info80': #053348,
'primary50': #256afa,
'primary60': #1844ef,
'primary80': #1f0f96,
'selection20': #fff2b3,
'success30': #3cca80,
'warning5': #fdf5e1,
'warning30': #eaa72b,
'warning60': #7d521e,
'white100': #ffffff,
);
:root {
--border-radius: 4px; // 0.4375rem;
--breakpoint-lg: 1024px;
@each $color, $value in $colors {
--#{$color}: #{$value};
--#{$color}-rgb: #{red($value)}, #{green($value)}, #{blue($value)};
}
--modal-gray-transparent-background: rgba(0, 0, 0, 0.1);
}