-
Notifications
You must be signed in to change notification settings - Fork 12
/
_variables.scss
165 lines (119 loc) · 4.58 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
161
162
163
164
165
////
/// nwayo - Variables
/// @group @absolunet/nwayo-toolbox
////
/// All rem / em sizes depend on this.
/// @type Number
$nwayo-basic-size: 16;
/// First replacement color for SVG in nwayo-bg-image-styles.
/// @type Color
$nwayo-svg-replacement-1-color: #ba0bab;
/// Second replacement color for SVG in nwayo-bg-image-styles.
/// @type Color
$nwayo-svg-replacement-2-color: #c0ffee;
/// All replacement colors for SVG in nwayo-bg-image-styles.
/// @requires {Color} $nwayo-svg-replacement-1-color
/// @requires {Color} $nwayo-svg-replacement-2-color
/// @type List<Color>
$nwayo-svg-replacement-colors: ($nwayo-svg-replacement-1-color, $nwayo-svg-replacement-2-color);
// Social network colors.
/// @type Map<String,Color>
/// @prop {Color} facebook - Facebook. (https://www.facebook.com/brand/resources/facebookapp/logo)
/// @prop {Color} messenger - Messenger. (https://www.facebook.com/brand/resources/messenger/messenger-brand)
/// @prop {Color} pinterest - Pinterest. (https://business.pinterest.com/brand-guidelines/)
/// @prop {Color} twitter - Twitter. (https://about.twitter.com/en/who-we-are/brand-toolkit)
/// @prop {Color} instagram - Instagram. (https://www.facebook.com/brand/resources/instagram/instagram-brand/ https://www.facebook.com/brand/resources/instagram/icons)
/// @prop {Color} youtube - YouTube. (https://www.youtube.com/howyoutubeworks/resources/brand-resources/#logos-icons-and-colors)
/// @prop {Color} vimeo - Vimeo. (https://press.vimeo.com/brand-guidelines/)
/// @prop {Color} linkedin - LinkedIn. (https://brand.linkedin.com/content/brand/global/en_us/index/visual-identity/color-palettes)
/// @prop {Color} whatsApp - WhatsApp. (https://www.facebook.com/brand/resources/whatsapp/logo)
/// @prop {Color} snapchat - Snapchat. (https://snap.com/en-US/brand-guidelines)
/// @prop {Color} tiktok - TikTok. (https://www.tiktok.com/en)
$nwayo-social-colors: (
'facebook': #1877f2,
'messenger': #000000,
'pinterest': #d6001c,
'twitter': #1d9bf0,
'instagram': #bc2a8d,
'youtube': #ff0000,
'vimeo': #1ab7ea,
'linkedin': #0077b5,
'whatsapp': #25d366,
'snapchat': #fffc00,
'tiktok': #000000
);
/// Default sans-serif fonts fallback.
/// @type String
$nwayo-sansserif-font: Helvetica, Arial, Verdana, sans-serif; // stylelint-disable-line value-keyword-case -- Font exception
/// Default serif fonts fallback.
/// @type String
$nwayo-serif-font: 'Times New Roman', Times, serif; // stylelint-disable-line value-keyword-case -- Font exception
/// Default monospace fonts fallback.
/// @type String
$nwayo-monospace-font: Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', Courier, monospace; // stylelint-disable-line value-keyword-case -- Font exception
/// Thin / Hairline font weight.
/// @type Number
$nwayo-thin-weight: 100;
/// Ultra-light / Extra-light font weight.
/// @type Number
$nwayo-extralight-weight: 200;
/// Light font weight.
/// @type Number
$nwayo-light-weight: 300;
/// Normal / Regular font weight.
/// @type Number
$nwayo-normal-weight: 400;
/// Medium font weight.
/// @type Number
$nwayo-medium-weight: 500;
/// Semi-bold / Demi-bold font weight.
/// @type Number
$nwayo-semibold-weight: 600;
/// Bold font weight.
/// @type Number
$nwayo-bold-weight: 700;
/// Extra-bold / Ultra-bold font weight.
/// @type Number
$nwayo-extrabold-weight: 800;
/// Heavy / Black font weight.
/// @type Number
$nwayo-black-weight: 900;
/// Extra-black / Ultra-black font weight.
/// @type Number
$nwayo-extrablack-weight: 950;
/// "•" character.
/// @type String
$nwayo-bull-char: '\2022';
/// "×" character.
/// @type String
$nwayo-times-char: '\00D7';
/// "–" character.
/// @type String
$nwayo-endash-char: '\2013';
/// All text-like inputs.
/// @type String
$nwayo-textfields-selector: 'input[type="text"], input[type="password"], input[type="email"], input[type="tel"], input[type="url"], input[type="search"], input[type="date"], input[type="number"]';
/// :hover selector active only on non-touch devices according to What Input?.
/// @type String
$nwayo-hover-selector: 'html:not([data-whatintent="touch"]) &:hover';
/// Body selector active only after document has loaded.
/// @type String
$nwayo-docloaded-selector: 'body.document-loaded';
/// Pleasant red for debugging.
/// @type Color
$debug-red: #ee2c2c;
/// Pleasant orange for debugging.
/// @type Color
$debug-orange: #ffa500;
/// Pleasant yellow for debugging.
/// @type Color
$debug-yellow: #ffdf33;
/// Pleasant green for debugging.
/// @type Color
$debug-green: #76ee00;
/// Pleasant blue for debugging.
/// @type Color
$debug-blue: #1e90ff;
/// Pleasant purple for debugging.
/// @type Color
$debug-purple: #a020f0;