forked from segmentio/segment-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_variables.scss
160 lines (139 loc) · 3.13 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/// Collection of colors.
///
/// @type {Map}
$color-values: (
primary-lighter: #ebf0ff,
primary-light: #d6e0ff,
primary: #3366ff,
primary-dark: #2952cc,
secondary-light: #dcf2ea,
secondary: #52bd94,
secondary-dark: #317159,
gray-900: #101840,
gray-800: #474d66,
gray-700: #696f8c,
gray-600: #8f95b2,
gray-500: #c1c4d6,
gray-400: #d8dae5,
gray-300: #e6e8f0,
gray-200: #edeff5,
gray-100: #f4f6fa,
gray-50: #fafbff,
code-gray: #474d66,
code-green: #6fba97,
code-blue: #2e98df,
code-violet: #9166ca,
code-pink: #ff678d,
code-red: #d52039,
code-orange: #f89c56,
code-background: #eceef0,
info-light: #f3f6ff,
info: #3366ff,
info-dark: #2952cc,
success-light: #f5fbf8,
success: #52bd94,
success-dark: #317159,
warning-light: #FFFAF1,
warning: #ffb020,
warning-dark: #996A13,
error-light: #fdf4f4,
error: #d14343,
error-dark: #a73636,
black: #000000,
white: #ffffff
) !default;
/// Collection of breakpoints.
///
/// @type {Map}
$breakpoint-sizes: (
xsmall: 420px,
small: 576px,
medium: 768px,
large: 992px,
xlarge: 1200px,
xxlarge: 1440px
) !default;
/// Collection of flex sizes by breakpoint.
///
/// @type {Map}
$flex-sizes: (
xsmall: 420px,
small: 576px,
medium: 768px,
large: 992px,
xlarge: 1200px,
xxlarge: 1440px
) !default;
/// Number of columns per flex.
///
/// @type {Number}
$flex-columns: 12 !default;
/// Collection of gutter sizes.
///
/// @type {Map}
$gutter-sizes: (
none: 0,
small: 0.3rem,
medium: 0.5rem,
large: 1rem,
xlarge: 1.5rem,
) !default;
/// Default gutter size.
///
/// @type {Keyword}
$gutter-size: medium !default;
/// Collection of waffle sizes.
///
/// @type {Map}
$waffle-sizes: (
none: 0,
small: 0.3rem,
medium: 0.5rem,
large: 1rem,
xlarge: 1.5rem,
xxlarge: 3rem,
) !default;
/// Default gutter size.
///
/// @type {Keyword}
$waffle-size: medium !default;
/// Offset value between breakpoints ranges.
///
/// @type {Value}
$breakpoint-offset: 1px;
/// Base font size set on the root html element.
///
/// @type {Value}
$font-size: 16px !default;
/// Base font weight set on the root html element.
///
/// @type {Value}
$font-weight: 400 !default;
/// Base line height determines the basic unit of vertical rhythm.
///
/// @type {Number}
$font-line-height: 26px !default;
/// Base font size set on the root html element.
///
/// @type {Color}
$font-color: map-get($color-values, gray-800) !default;
/// Default font family.
///
/// @type {Value|Values}
$font-family-primary: "SF Pro Text", BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !default;
/// Monospace font family.
///
/// @type {Value|Values}
$font-family-monospace: "Droid Sans Mono", "Lucida Console", "Monaco", monospace !default;
/// Font weight of headings.
///
/// @type {Number|Keyword}
$heading-font-weight: 600 !default;
/// Font family of headings.
///
/// @type {Keyword|Values}
$heading-font-family: $font-family-primary !default;
/// Color of headings.
///
/// @type {Color}
$heading-color: map-get($color-values, gray-900) !default;