beathers 5.1.0 → 5.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/css/beathers.min.css +1 -1
- package/dist/css/beathers.min.css.map +1 -1
- package/dist/scripts/cli.js +4 -1
- package/package.json +13 -13
- package/readme.md +217 -217
- package/src/scss/_variables.scss +305 -305
- package/src/scss/beathers.min.scss +1 -1
- package/src/scss/functions/_colors.scss +232 -232
- package/src/scss/functions/_mediaQueries.scss +128 -128
- package/src/scss/functions/_others.scss +83 -83
- package/src/scss/functions/_typographic.scss +125 -125
- package/src/scss/functions/_validations.scss +256 -256
- package/src/scss/settings/_defaults.scss +251 -251
- package/src/scss/settings/_index.scss +68 -68
- package/src/scss/settings/_resets.scss +103 -103
- package/src/scss/style/_colors.scss +139 -139
- package/src/scss/style/_grid.scss +92 -92
- package/src/scss/style/_shaping.scss +372 -372
- package/src/scss/style/_typographic.scss +304 -304
|
@@ -1,251 +1,251 @@
|
|
|
1
|
-
// Variables
|
|
2
|
-
// ---------
|
|
3
|
-
// Core design system variables for Beathers.
|
|
4
|
-
// Colors, fonts, and other configurable options.
|
|
5
|
-
// Uses Sass default flag to allow overriding with @use ... with.
|
|
6
|
-
|
|
7
|
-
// Colors
|
|
8
|
-
// ------
|
|
9
|
-
// Theme color map with light/dark variants for each color.
|
|
10
|
-
// Example: "name": ("light": #color, "dark": #color)
|
|
11
|
-
$colors: (
|
|
12
|
-
"main": (
|
|
13
|
-
"light": #ffffff,
|
|
14
|
-
"dark": #1a1d21,
|
|
15
|
-
),
|
|
16
|
-
"second": (
|
|
17
|
-
"light": #f8f8ff,
|
|
18
|
-
"dark": #2e2e3f,
|
|
19
|
-
),
|
|
20
|
-
"third": (
|
|
21
|
-
"light": #ebecf7,
|
|
22
|
-
"dark": #39394a,
|
|
23
|
-
),
|
|
24
|
-
"t1": (
|
|
25
|
-
"light": #303030,
|
|
26
|
-
"dark": #fafafa,
|
|
27
|
-
),
|
|
28
|
-
"t2": (
|
|
29
|
-
"light": #404040,
|
|
30
|
-
"dark": #f5f5f5,
|
|
31
|
-
),
|
|
32
|
-
"t3": (
|
|
33
|
-
"light": #404040,
|
|
34
|
-
"dark": #f5f5f5,
|
|
35
|
-
),
|
|
36
|
-
"d1": (
|
|
37
|
-
"light": #505050,
|
|
38
|
-
"dark": #dfdfdf,
|
|
39
|
-
),
|
|
40
|
-
"d2": (
|
|
41
|
-
"light": #808080,
|
|
42
|
-
"dark": #bdbdbd,
|
|
43
|
-
),
|
|
44
|
-
"d3": (
|
|
45
|
-
"light": #909090,
|
|
46
|
-
"dark": #9e9e9e,
|
|
47
|
-
),
|
|
48
|
-
"success": (
|
|
49
|
-
"light": #099750,
|
|
50
|
-
"dark": #5ff2a9,
|
|
51
|
-
),
|
|
52
|
-
"primary": (
|
|
53
|
-
"light": #2a6e9f,
|
|
54
|
-
"dark": #89c5f0,
|
|
55
|
-
),
|
|
56
|
-
"secondary": (
|
|
57
|
-
"light": #545454,
|
|
58
|
-
"dark": #c6c3c3,
|
|
59
|
-
),
|
|
60
|
-
"danger": (
|
|
61
|
-
"light": #b5333b,
|
|
62
|
-
"dark": #ee6b74,
|
|
63
|
-
),
|
|
64
|
-
"warning": (
|
|
65
|
-
"light": #ca9420,
|
|
66
|
-
"dark": #fcd06f,
|
|
67
|
-
),
|
|
68
|
-
"info": (
|
|
69
|
-
"light": #0c8181,
|
|
70
|
-
"dark": #49d1d1,
|
|
71
|
-
),
|
|
72
|
-
"facebook": (
|
|
73
|
-
"light": #3b5998,
|
|
74
|
-
"dark": #3b5998,
|
|
75
|
-
),
|
|
76
|
-
"messenger": (
|
|
77
|
-
"light": #006aff,
|
|
78
|
-
"dark": #006aff,
|
|
79
|
-
),
|
|
80
|
-
"whatsapp": (
|
|
81
|
-
"light": #25d366,
|
|
82
|
-
"dark": #25d366,
|
|
83
|
-
),
|
|
84
|
-
"instagram": (
|
|
85
|
-
"light": #3f729b,
|
|
86
|
-
"dark": #3f729b,
|
|
87
|
-
),
|
|
88
|
-
"google": (
|
|
89
|
-
"light": #4285f4,
|
|
90
|
-
"dark": #4285f4,
|
|
91
|
-
),
|
|
92
|
-
"signal": (
|
|
93
|
-
"light": #2190e8,
|
|
94
|
-
"dark": #2190e8,
|
|
95
|
-
),
|
|
96
|
-
"twitter": (
|
|
97
|
-
"light": #00acee,
|
|
98
|
-
"dark": #00acee,
|
|
99
|
-
),
|
|
100
|
-
"telegram": (
|
|
101
|
-
"light": #0088cc,
|
|
102
|
-
"dark": #0088cc,
|
|
103
|
-
),
|
|
104
|
-
"youtube": (
|
|
105
|
-
"light": #ff0000,
|
|
106
|
-
"dark": #ff0000,
|
|
107
|
-
),
|
|
108
|
-
"linkedin": (
|
|
109
|
-
"light": #0077b5,
|
|
110
|
-
"dark": #0077b5,
|
|
111
|
-
),
|
|
112
|
-
"behance": (
|
|
113
|
-
"light": #053eff,
|
|
114
|
-
"dark": #053eff,
|
|
115
|
-
),
|
|
116
|
-
"github": (
|
|
117
|
-
"light": #171515,
|
|
118
|
-
"dark": #171515,
|
|
119
|
-
),
|
|
120
|
-
"gitlab": (
|
|
121
|
-
"light": #fca326,
|
|
122
|
-
"dark": #fca326,
|
|
123
|
-
),
|
|
124
|
-
"wechat": (
|
|
125
|
-
"light": #09b83e,
|
|
126
|
-
"dark": #09b83e,
|
|
127
|
-
),
|
|
128
|
-
"tiktok": (
|
|
129
|
-
"light": #ff0050,
|
|
130
|
-
"dark": #ff0050,
|
|
131
|
-
),
|
|
132
|
-
"snapchat": (
|
|
133
|
-
"light": #fffc00,
|
|
134
|
-
"dark": #fffc00,
|
|
135
|
-
),
|
|
136
|
-
"pinterest": (
|
|
137
|
-
"light": #e60023,
|
|
138
|
-
"dark": #e60023,
|
|
139
|
-
),
|
|
140
|
-
"reddit": (
|
|
141
|
-
"light": #ff4500,
|
|
142
|
-
"dark": #ff4500,
|
|
143
|
-
),
|
|
144
|
-
"teams": (
|
|
145
|
-
"light": #464eb8,
|
|
146
|
-
"dark": #464eb8,
|
|
147
|
-
),
|
|
148
|
-
"twitch": (
|
|
149
|
-
"light": #6441a5,
|
|
150
|
-
"dark": #6441a5,
|
|
151
|
-
),
|
|
152
|
-
"dribbble": (
|
|
153
|
-
"light": #ea4c89,
|
|
154
|
-
"dark": #ea4c89,
|
|
155
|
-
),
|
|
156
|
-
"custom-1": (
|
|
157
|
-
"light": #4289c7,
|
|
158
|
-
"dark": #75b0e4,
|
|
159
|
-
),
|
|
160
|
-
"custom-2": (
|
|
161
|
-
"light": #39c2cb,
|
|
162
|
-
"dark": #79e2e9,
|
|
163
|
-
),
|
|
164
|
-
"custom-3": (
|
|
165
|
-
"light": #36c07e,
|
|
166
|
-
"dark": #86f3be,
|
|
167
|
-
),
|
|
168
|
-
"custom-4": (
|
|
169
|
-
"light": #a84fd1,
|
|
170
|
-
"dark": #cd87ee,
|
|
171
|
-
),
|
|
172
|
-
"custom-5": (
|
|
173
|
-
"light": #df4f60,
|
|
174
|
-
"dark": #df7884,
|
|
175
|
-
),
|
|
176
|
-
"custom-6": (
|
|
177
|
-
"light": #dec338,
|
|
178
|
-
"dark": #e6d689,
|
|
179
|
-
),
|
|
180
|
-
"custom-7": (
|
|
181
|
-
"light": #ea6e2c,
|
|
182
|
-
"dark": #e29f7b,
|
|
183
|
-
),
|
|
184
|
-
"custom-8": (
|
|
185
|
-
"light": #a66d38,
|
|
186
|
-
"dark": #e3b387,
|
|
187
|
-
),
|
|
188
|
-
"custom-9": (
|
|
189
|
-
"light": #eb30a0,
|
|
190
|
-
"dark": #e779bb,
|
|
191
|
-
),
|
|
192
|
-
"custom-10": (
|
|
193
|
-
"light": #1e24a5,
|
|
194
|
-
"dark": #5d64ea,
|
|
195
|
-
),
|
|
196
|
-
"black": (
|
|
197
|
-
"light": #000000,
|
|
198
|
-
"dark": #000000,
|
|
199
|
-
),
|
|
200
|
-
"white": (
|
|
201
|
-
"light": #ffffff,
|
|
202
|
-
"dark": #ffffff,
|
|
203
|
-
),
|
|
204
|
-
) !default;
|
|
205
|
-
|
|
206
|
-
// Typography
|
|
207
|
-
// ---------
|
|
208
|
-
// Font configuration for the Beathers system
|
|
209
|
-
// Defines paths, formats and font families with their variations
|
|
210
|
-
$fontMainPath: "/fonts/" !default;
|
|
211
|
-
$fontFormat: "woff2" !default;
|
|
212
|
-
$fontWeights: ("light", "regular", "medium", "bold") !default;
|
|
213
|
-
$fontStyles: ("normal") !default;
|
|
214
|
-
$textTruncate: 10 !default;
|
|
215
|
-
|
|
216
|
-
// Font families map with language variants, unicode ranges and font weights
|
|
217
|
-
// Example:
|
|
218
|
-
// $fonts: (
|
|
219
|
-
// "fontKey": ( // String/Required | Font key i.e. "font1", "font2", etc.
|
|
220
|
-
// "weights": ("thin", "extra-light", "light", "regular", "medium", "semibold", "bold", "extra-bold", "black"),
|
|
221
|
-
// Optional: Font weights, default to ("light", "regular", "medium", "bold")
|
|
222
|
-
// "styles": ("normal", "italic", "oblique"),
|
|
223
|
-
// Optional: Font styles, default to ("normal")
|
|
224
|
-
// "variants": ( // Map/Required | Font variants
|
|
225
|
-
// "language": ( // String/Required i.e. "en", "ar"
|
|
226
|
-
// "title": string, // Required: Font family name i.e. "roboto"
|
|
227
|
-
// "unicode": string/null, // Optional: Unicode range i.e. "U+0000-00FF...", default to null
|
|
228
|
-
// "format": string, // Optional: Font format i.e. "woff2" or "woff", default to "woff2"
|
|
229
|
-
// "isLocal": boolean, // Optional: Use local font files i.e. true or false, default to true
|
|
230
|
-
// "url": string, // Use it when "isLocal" is false
|
|
231
|
-
// Optional: External font URL i.e. "https://fonts.googleapis.com/css2?family=Roboto&display=swap"
|
|
232
|
-
// default to null
|
|
233
|
-
// )
|
|
234
|
-
// )
|
|
235
|
-
// )
|
|
236
|
-
$fonts: (
|
|
237
|
-
"font1": (
|
|
238
|
-
"variants": (
|
|
239
|
-
"en": (
|
|
240
|
-
"title": roboto,
|
|
241
|
-
"unicode":
|
|
242
|
-
"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD",
|
|
243
|
-
),
|
|
244
|
-
"ar": (
|
|
245
|
-
"title": cairo,
|
|
246
|
-
"unicode":
|
|
247
|
-
"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD",
|
|
248
|
-
),
|
|
249
|
-
),
|
|
250
|
-
),
|
|
251
|
-
) !default;
|
|
1
|
+
// Variables
|
|
2
|
+
// ---------
|
|
3
|
+
// Core design system variables for Beathers.
|
|
4
|
+
// Colors, fonts, and other configurable options.
|
|
5
|
+
// Uses Sass default flag to allow overriding with @use ... with.
|
|
6
|
+
|
|
7
|
+
// Colors
|
|
8
|
+
// ------
|
|
9
|
+
// Theme color map with light/dark variants for each color.
|
|
10
|
+
// Example: "name": ("light": #color, "dark": #color)
|
|
11
|
+
$colors: (
|
|
12
|
+
"main": (
|
|
13
|
+
"light": #ffffff,
|
|
14
|
+
"dark": #1a1d21,
|
|
15
|
+
),
|
|
16
|
+
"second": (
|
|
17
|
+
"light": #f8f8ff,
|
|
18
|
+
"dark": #2e2e3f,
|
|
19
|
+
),
|
|
20
|
+
"third": (
|
|
21
|
+
"light": #ebecf7,
|
|
22
|
+
"dark": #39394a,
|
|
23
|
+
),
|
|
24
|
+
"t1": (
|
|
25
|
+
"light": #303030,
|
|
26
|
+
"dark": #fafafa,
|
|
27
|
+
),
|
|
28
|
+
"t2": (
|
|
29
|
+
"light": #404040,
|
|
30
|
+
"dark": #f5f5f5,
|
|
31
|
+
),
|
|
32
|
+
"t3": (
|
|
33
|
+
"light": #404040,
|
|
34
|
+
"dark": #f5f5f5,
|
|
35
|
+
),
|
|
36
|
+
"d1": (
|
|
37
|
+
"light": #505050,
|
|
38
|
+
"dark": #dfdfdf,
|
|
39
|
+
),
|
|
40
|
+
"d2": (
|
|
41
|
+
"light": #808080,
|
|
42
|
+
"dark": #bdbdbd,
|
|
43
|
+
),
|
|
44
|
+
"d3": (
|
|
45
|
+
"light": #909090,
|
|
46
|
+
"dark": #9e9e9e,
|
|
47
|
+
),
|
|
48
|
+
"success": (
|
|
49
|
+
"light": #099750,
|
|
50
|
+
"dark": #5ff2a9,
|
|
51
|
+
),
|
|
52
|
+
"primary": (
|
|
53
|
+
"light": #2a6e9f,
|
|
54
|
+
"dark": #89c5f0,
|
|
55
|
+
),
|
|
56
|
+
"secondary": (
|
|
57
|
+
"light": #545454,
|
|
58
|
+
"dark": #c6c3c3,
|
|
59
|
+
),
|
|
60
|
+
"danger": (
|
|
61
|
+
"light": #b5333b,
|
|
62
|
+
"dark": #ee6b74,
|
|
63
|
+
),
|
|
64
|
+
"warning": (
|
|
65
|
+
"light": #ca9420,
|
|
66
|
+
"dark": #fcd06f,
|
|
67
|
+
),
|
|
68
|
+
"info": (
|
|
69
|
+
"light": #0c8181,
|
|
70
|
+
"dark": #49d1d1,
|
|
71
|
+
),
|
|
72
|
+
"facebook": (
|
|
73
|
+
"light": #3b5998,
|
|
74
|
+
"dark": #3b5998,
|
|
75
|
+
),
|
|
76
|
+
"messenger": (
|
|
77
|
+
"light": #006aff,
|
|
78
|
+
"dark": #006aff,
|
|
79
|
+
),
|
|
80
|
+
"whatsapp": (
|
|
81
|
+
"light": #25d366,
|
|
82
|
+
"dark": #25d366,
|
|
83
|
+
),
|
|
84
|
+
"instagram": (
|
|
85
|
+
"light": #3f729b,
|
|
86
|
+
"dark": #3f729b,
|
|
87
|
+
),
|
|
88
|
+
"google": (
|
|
89
|
+
"light": #4285f4,
|
|
90
|
+
"dark": #4285f4,
|
|
91
|
+
),
|
|
92
|
+
"signal": (
|
|
93
|
+
"light": #2190e8,
|
|
94
|
+
"dark": #2190e8,
|
|
95
|
+
),
|
|
96
|
+
"twitter": (
|
|
97
|
+
"light": #00acee,
|
|
98
|
+
"dark": #00acee,
|
|
99
|
+
),
|
|
100
|
+
"telegram": (
|
|
101
|
+
"light": #0088cc,
|
|
102
|
+
"dark": #0088cc,
|
|
103
|
+
),
|
|
104
|
+
"youtube": (
|
|
105
|
+
"light": #ff0000,
|
|
106
|
+
"dark": #ff0000,
|
|
107
|
+
),
|
|
108
|
+
"linkedin": (
|
|
109
|
+
"light": #0077b5,
|
|
110
|
+
"dark": #0077b5,
|
|
111
|
+
),
|
|
112
|
+
"behance": (
|
|
113
|
+
"light": #053eff,
|
|
114
|
+
"dark": #053eff,
|
|
115
|
+
),
|
|
116
|
+
"github": (
|
|
117
|
+
"light": #171515,
|
|
118
|
+
"dark": #171515,
|
|
119
|
+
),
|
|
120
|
+
"gitlab": (
|
|
121
|
+
"light": #fca326,
|
|
122
|
+
"dark": #fca326,
|
|
123
|
+
),
|
|
124
|
+
"wechat": (
|
|
125
|
+
"light": #09b83e,
|
|
126
|
+
"dark": #09b83e,
|
|
127
|
+
),
|
|
128
|
+
"tiktok": (
|
|
129
|
+
"light": #ff0050,
|
|
130
|
+
"dark": #ff0050,
|
|
131
|
+
),
|
|
132
|
+
"snapchat": (
|
|
133
|
+
"light": #fffc00,
|
|
134
|
+
"dark": #fffc00,
|
|
135
|
+
),
|
|
136
|
+
"pinterest": (
|
|
137
|
+
"light": #e60023,
|
|
138
|
+
"dark": #e60023,
|
|
139
|
+
),
|
|
140
|
+
"reddit": (
|
|
141
|
+
"light": #ff4500,
|
|
142
|
+
"dark": #ff4500,
|
|
143
|
+
),
|
|
144
|
+
"teams": (
|
|
145
|
+
"light": #464eb8,
|
|
146
|
+
"dark": #464eb8,
|
|
147
|
+
),
|
|
148
|
+
"twitch": (
|
|
149
|
+
"light": #6441a5,
|
|
150
|
+
"dark": #6441a5,
|
|
151
|
+
),
|
|
152
|
+
"dribbble": (
|
|
153
|
+
"light": #ea4c89,
|
|
154
|
+
"dark": #ea4c89,
|
|
155
|
+
),
|
|
156
|
+
"custom-1": (
|
|
157
|
+
"light": #4289c7,
|
|
158
|
+
"dark": #75b0e4,
|
|
159
|
+
),
|
|
160
|
+
"custom-2": (
|
|
161
|
+
"light": #39c2cb,
|
|
162
|
+
"dark": #79e2e9,
|
|
163
|
+
),
|
|
164
|
+
"custom-3": (
|
|
165
|
+
"light": #36c07e,
|
|
166
|
+
"dark": #86f3be,
|
|
167
|
+
),
|
|
168
|
+
"custom-4": (
|
|
169
|
+
"light": #a84fd1,
|
|
170
|
+
"dark": #cd87ee,
|
|
171
|
+
),
|
|
172
|
+
"custom-5": (
|
|
173
|
+
"light": #df4f60,
|
|
174
|
+
"dark": #df7884,
|
|
175
|
+
),
|
|
176
|
+
"custom-6": (
|
|
177
|
+
"light": #dec338,
|
|
178
|
+
"dark": #e6d689,
|
|
179
|
+
),
|
|
180
|
+
"custom-7": (
|
|
181
|
+
"light": #ea6e2c,
|
|
182
|
+
"dark": #e29f7b,
|
|
183
|
+
),
|
|
184
|
+
"custom-8": (
|
|
185
|
+
"light": #a66d38,
|
|
186
|
+
"dark": #e3b387,
|
|
187
|
+
),
|
|
188
|
+
"custom-9": (
|
|
189
|
+
"light": #eb30a0,
|
|
190
|
+
"dark": #e779bb,
|
|
191
|
+
),
|
|
192
|
+
"custom-10": (
|
|
193
|
+
"light": #1e24a5,
|
|
194
|
+
"dark": #5d64ea,
|
|
195
|
+
),
|
|
196
|
+
"black": (
|
|
197
|
+
"light": #000000,
|
|
198
|
+
"dark": #000000,
|
|
199
|
+
),
|
|
200
|
+
"white": (
|
|
201
|
+
"light": #ffffff,
|
|
202
|
+
"dark": #ffffff,
|
|
203
|
+
),
|
|
204
|
+
) !default;
|
|
205
|
+
|
|
206
|
+
// Typography
|
|
207
|
+
// ---------
|
|
208
|
+
// Font configuration for the Beathers system
|
|
209
|
+
// Defines paths, formats and font families with their variations
|
|
210
|
+
$fontMainPath: "/fonts/" !default;
|
|
211
|
+
$fontFormat: "woff2" !default;
|
|
212
|
+
$fontWeights: ("light", "regular", "medium", "bold") !default;
|
|
213
|
+
$fontStyles: ("normal") !default;
|
|
214
|
+
$textTruncate: 10 !default;
|
|
215
|
+
|
|
216
|
+
// Font families map with language variants, unicode ranges and font weights
|
|
217
|
+
// Example:
|
|
218
|
+
// $fonts: (
|
|
219
|
+
// "fontKey": ( // String/Required | Font key i.e. "font1", "font2", etc.
|
|
220
|
+
// "weights": ("thin", "extra-light", "light", "regular", "medium", "semibold", "bold", "extra-bold", "black"),
|
|
221
|
+
// Optional: Font weights, default to ("light", "regular", "medium", "bold")
|
|
222
|
+
// "styles": ("normal", "italic", "oblique"),
|
|
223
|
+
// Optional: Font styles, default to ("normal")
|
|
224
|
+
// "variants": ( // Map/Required | Font variants
|
|
225
|
+
// "language": ( // String/Required i.e. "en", "ar"
|
|
226
|
+
// "title": string, // Required: Font family name i.e. "roboto"
|
|
227
|
+
// "unicode": string/null, // Optional: Unicode range i.e. "U+0000-00FF...", default to null
|
|
228
|
+
// "format": string, // Optional: Font format i.e. "woff2" or "woff", default to "woff2"
|
|
229
|
+
// "isLocal": boolean, // Optional: Use local font files i.e. true or false, default to true
|
|
230
|
+
// "url": string, // Use it when "isLocal" is false
|
|
231
|
+
// Optional: External font URL i.e. "https://fonts.googleapis.com/css2?family=Roboto&display=swap"
|
|
232
|
+
// default to null
|
|
233
|
+
// )
|
|
234
|
+
// )
|
|
235
|
+
// )
|
|
236
|
+
$fonts: (
|
|
237
|
+
"font1": (
|
|
238
|
+
"variants": (
|
|
239
|
+
"en": (
|
|
240
|
+
"title": roboto,
|
|
241
|
+
"unicode":
|
|
242
|
+
"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD",
|
|
243
|
+
),
|
|
244
|
+
"ar": (
|
|
245
|
+
"title": cairo,
|
|
246
|
+
"unicode":
|
|
247
|
+
"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD",
|
|
248
|
+
),
|
|
249
|
+
),
|
|
250
|
+
),
|
|
251
|
+
) !default;
|
|
@@ -1,68 +1,68 @@
|
|
|
1
|
-
// Main settings ----- ----- ----- -----
|
|
2
|
-
// Enables or disables media queries.
|
|
3
|
-
$useMediaQueries: false !default;
|
|
4
|
-
$useIcons: true !default;
|
|
5
|
-
|
|
6
|
-
// Typographic settings ----- ----- ----- -----
|
|
7
|
-
// Enables or disables font family utilities.
|
|
8
|
-
$useFontFamilies: true !default;
|
|
9
|
-
// Enables or disables font size utilities.
|
|
10
|
-
$useFontSizes: true !default;
|
|
11
|
-
// Enables or disables font shape utilities (transform, decoration, styles).
|
|
12
|
-
$useFontShapes: true !default;
|
|
13
|
-
// Enables or disables text alignment utilities.
|
|
14
|
-
$useTextAligns: true !default;
|
|
15
|
-
// Enables or disables text truncation utilities.
|
|
16
|
-
$useTextTruncate: true !default;
|
|
17
|
-
|
|
18
|
-
// Colors settings ----- ----- ----- -----
|
|
19
|
-
// Enables or disables color utilities.
|
|
20
|
-
$useColors: true !default;
|
|
21
|
-
// Enables or disables color opacity utilities.
|
|
22
|
-
$useColorsOpacities: true !default;
|
|
23
|
-
// Enables or disables light mode color variants.
|
|
24
|
-
$useColorsLightMode: true !default;
|
|
25
|
-
// Enables or disables dark mode color variants.
|
|
26
|
-
$useColorsDarkMode: true !default;
|
|
27
|
-
// Enables or disables current color usage.
|
|
28
|
-
$useCurrentColors: true !default;
|
|
29
|
-
// Enables or disables root color definitions.
|
|
30
|
-
$useRootColors: true !default;
|
|
31
|
-
|
|
32
|
-
// Grid settings ----- ----- ----- -----
|
|
33
|
-
// Enables or disables grid utilities.
|
|
34
|
-
$useGrid: true !default;
|
|
35
|
-
// Enables or disables flexbox utilities.
|
|
36
|
-
$useFlex: true !default;
|
|
37
|
-
|
|
38
|
-
// Shapes settings ----- ----- ----- -----
|
|
39
|
-
// Enables or disables transition utilities.
|
|
40
|
-
$useTransitions: true !default;
|
|
41
|
-
// Enables or disables wrapper utilities.
|
|
42
|
-
$useWrappers: true !default;
|
|
43
|
-
// Enables or disables shadow utilities.
|
|
44
|
-
$useShadows: true !default;
|
|
45
|
-
// Enables or disables display utilities.
|
|
46
|
-
$useDisplays: true !default;
|
|
47
|
-
// Enables or disables overflow utilities.
|
|
48
|
-
$useOverflows: true !default;
|
|
49
|
-
// Enables or disables opacity utilities.
|
|
50
|
-
$useOpacities: true !default;
|
|
51
|
-
// Enables or disables blur utilities.
|
|
52
|
-
$useBlur: true !default;
|
|
53
|
-
// Enables or disables object-fit utilities.
|
|
54
|
-
$useObjectFits: true !default;
|
|
55
|
-
// Enables or disables position utilities.
|
|
56
|
-
$usePositions: true !default;
|
|
57
|
-
// Enables or disables inset utilities.
|
|
58
|
-
$useInsets: true !default;
|
|
59
|
-
// Enables or disables size utilities (width, height).
|
|
60
|
-
$useSizes: true !default;
|
|
61
|
-
// Enables or disables gutter utilities (padding, margin, gap).
|
|
62
|
-
$useGutters: true !default;
|
|
63
|
-
// Enables or disables border utilities.
|
|
64
|
-
$useBorders: true !default;
|
|
65
|
-
// Enables or disables text border utilities.
|
|
66
|
-
$useTextBorders: true !default;
|
|
67
|
-
// Enables or disables border-radius utilities.
|
|
68
|
-
$useRadius: true !default;
|
|
1
|
+
// Main settings ----- ----- ----- -----
|
|
2
|
+
// Enables or disables media queries.
|
|
3
|
+
$useMediaQueries: false !default;
|
|
4
|
+
$useIcons: true !default;
|
|
5
|
+
|
|
6
|
+
// Typographic settings ----- ----- ----- -----
|
|
7
|
+
// Enables or disables font family utilities.
|
|
8
|
+
$useFontFamilies: true !default;
|
|
9
|
+
// Enables or disables font size utilities.
|
|
10
|
+
$useFontSizes: true !default;
|
|
11
|
+
// Enables or disables font shape utilities (transform, decoration, styles).
|
|
12
|
+
$useFontShapes: true !default;
|
|
13
|
+
// Enables or disables text alignment utilities.
|
|
14
|
+
$useTextAligns: true !default;
|
|
15
|
+
// Enables or disables text truncation utilities.
|
|
16
|
+
$useTextTruncate: true !default;
|
|
17
|
+
|
|
18
|
+
// Colors settings ----- ----- ----- -----
|
|
19
|
+
// Enables or disables color utilities.
|
|
20
|
+
$useColors: true !default;
|
|
21
|
+
// Enables or disables color opacity utilities.
|
|
22
|
+
$useColorsOpacities: true !default;
|
|
23
|
+
// Enables or disables light mode color variants.
|
|
24
|
+
$useColorsLightMode: true !default;
|
|
25
|
+
// Enables or disables dark mode color variants.
|
|
26
|
+
$useColorsDarkMode: true !default;
|
|
27
|
+
// Enables or disables current color usage.
|
|
28
|
+
$useCurrentColors: true !default;
|
|
29
|
+
// Enables or disables root color definitions.
|
|
30
|
+
$useRootColors: true !default;
|
|
31
|
+
|
|
32
|
+
// Grid settings ----- ----- ----- -----
|
|
33
|
+
// Enables or disables grid utilities.
|
|
34
|
+
$useGrid: true !default;
|
|
35
|
+
// Enables or disables flexbox utilities.
|
|
36
|
+
$useFlex: true !default;
|
|
37
|
+
|
|
38
|
+
// Shapes settings ----- ----- ----- -----
|
|
39
|
+
// Enables or disables transition utilities.
|
|
40
|
+
$useTransitions: true !default;
|
|
41
|
+
// Enables or disables wrapper utilities.
|
|
42
|
+
$useWrappers: true !default;
|
|
43
|
+
// Enables or disables shadow utilities.
|
|
44
|
+
$useShadows: true !default;
|
|
45
|
+
// Enables or disables display utilities.
|
|
46
|
+
$useDisplays: true !default;
|
|
47
|
+
// Enables or disables overflow utilities.
|
|
48
|
+
$useOverflows: true !default;
|
|
49
|
+
// Enables or disables opacity utilities.
|
|
50
|
+
$useOpacities: true !default;
|
|
51
|
+
// Enables or disables blur utilities.
|
|
52
|
+
$useBlur: true !default;
|
|
53
|
+
// Enables or disables object-fit utilities.
|
|
54
|
+
$useObjectFits: true !default;
|
|
55
|
+
// Enables or disables position utilities.
|
|
56
|
+
$usePositions: true !default;
|
|
57
|
+
// Enables or disables inset utilities.
|
|
58
|
+
$useInsets: true !default;
|
|
59
|
+
// Enables or disables size utilities (width, height).
|
|
60
|
+
$useSizes: true !default;
|
|
61
|
+
// Enables or disables gutter utilities (padding, margin, gap).
|
|
62
|
+
$useGutters: true !default;
|
|
63
|
+
// Enables or disables border utilities.
|
|
64
|
+
$useBorders: true !default;
|
|
65
|
+
// Enables or disables text border utilities.
|
|
66
|
+
$useTextBorders: true !default;
|
|
67
|
+
// Enables or disables border-radius utilities.
|
|
68
|
+
$useRadius: true !default;
|