beathers 5.0.0
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-icons.min.css +1 -0
- package/dist/css/beathers-icons.min.css.map +1 -0
- package/dist/css/beathers.min.css +4 -0
- package/dist/css/beathers.min.css.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/dist/scripts/BuildScssVariables.d.ts +2 -0
- package/dist/scripts/BuildScssVariables.js +111 -0
- package/dist/scripts/BuildTheme.d.ts +1 -0
- package/dist/scripts/BuildTheme.js +99 -0
- package/dist/scripts/CallNewVariables.d.ts +1 -0
- package/dist/scripts/CallNewVariables.js +17 -0
- package/dist/scripts/LoadUserConfigs.d.ts +2 -0
- package/dist/scripts/LoadUserConfigs.js +42 -0
- package/dist/scripts/Merge.d.ts +2 -0
- package/dist/scripts/Merge.js +26 -0
- package/dist/scripts/ReadDefaultValues.d.ts +2 -0
- package/dist/scripts/ReadDefaultValues.js +168 -0
- package/dist/scripts/cli.d.ts +2 -0
- package/dist/scripts/cli.js +14 -0
- package/dist/scripts/types.d.ts +57 -0
- package/dist/scripts/types.js +1 -0
- package/package.json +84 -0
- package/readme.md +235 -0
- package/src/scss/_variables.scss +305 -0
- package/src/scss/beathers-icons.min.scss +265 -0
- package/src/scss/beathers.min.scss +13 -0
- package/src/scss/functions/_colors.scss +232 -0
- package/src/scss/functions/_mediaQueries.scss +128 -0
- package/src/scss/functions/_others.scss +83 -0
- package/src/scss/functions/_typographic.scss +125 -0
- package/src/scss/functions/_validations.scss +256 -0
- package/src/scss/settings/_configs.scss +366 -0
- package/src/scss/settings/_defaults.scss +251 -0
- package/src/scss/settings/_index.scss +68 -0
- package/src/scss/settings/_resets.scss +103 -0
- package/src/scss/style/_colors.scss +139 -0
- package/src/scss/style/_grid.scss +92 -0
- package/src/scss/style/_shaping.scss +372 -0
- package/src/scss/style/_typographic.scss +304 -0
|
@@ -0,0 +1,366 @@
|
|
|
1
|
+
// Core configuration maps and variables for the Beathers Design System.
|
|
2
|
+
|
|
3
|
+
// Defines CSS properties for color utilities.
|
|
4
|
+
$colorsPropertiesMap: (
|
|
5
|
+
null: color,
|
|
6
|
+
bg: background-color,
|
|
7
|
+
border: border-color,
|
|
8
|
+
fill: fill,
|
|
9
|
+
stroke: stroke,
|
|
10
|
+
text-stroke: -webkit-text-stroke-color,
|
|
11
|
+
);
|
|
12
|
+
|
|
13
|
+
// Defines pseudo-classes for color variants.
|
|
14
|
+
$colorsPseudoMap: (
|
|
15
|
+
'placeholder': '::placeholder',
|
|
16
|
+
'hover': ':hover',
|
|
17
|
+
'focus': ':focus',
|
|
18
|
+
);
|
|
19
|
+
|
|
20
|
+
// Defines the default font stack.
|
|
21
|
+
$defaultFontFamilies:
|
|
22
|
+
system-ui,
|
|
23
|
+
-apple-system,
|
|
24
|
+
Roboto,
|
|
25
|
+
Arial,
|
|
26
|
+
sans-serif !default;
|
|
27
|
+
|
|
28
|
+
// Defines available font weights.
|
|
29
|
+
$fontWeightsValues: (
|
|
30
|
+
'thin': 100,
|
|
31
|
+
'extra-light': 200,
|
|
32
|
+
'light': 300,
|
|
33
|
+
'regular': 400,
|
|
34
|
+
'medium': 500,
|
|
35
|
+
'semibold': 600,
|
|
36
|
+
'bold': 700,
|
|
37
|
+
'extra-bold': 800,
|
|
38
|
+
'black': 900,
|
|
39
|
+
);
|
|
40
|
+
|
|
41
|
+
// Defines the typography scale for font sizes.
|
|
42
|
+
$fontSizes: (
|
|
43
|
+
'h1': 96px,
|
|
44
|
+
'h2': 60px,
|
|
45
|
+
'h3': 40px,
|
|
46
|
+
'h4': 34px,
|
|
47
|
+
'h5': 24px,
|
|
48
|
+
'h6': 20px,
|
|
49
|
+
'subtitle1': 16px,
|
|
50
|
+
'subtitle2': 14px,
|
|
51
|
+
'body1': 16px,
|
|
52
|
+
'body2': 14px,
|
|
53
|
+
'button': 14px,
|
|
54
|
+
'caption': 12px,
|
|
55
|
+
'overline': 10px,
|
|
56
|
+
) !default;
|
|
57
|
+
|
|
58
|
+
// Defines text transformation and decoration options.
|
|
59
|
+
$fontShapes: (
|
|
60
|
+
'transform': (
|
|
61
|
+
uppercase,
|
|
62
|
+
lowercase,
|
|
63
|
+
capitalize,
|
|
64
|
+
),
|
|
65
|
+
'decoration': (
|
|
66
|
+
underline,
|
|
67
|
+
line-through,
|
|
68
|
+
),
|
|
69
|
+
'styles': (
|
|
70
|
+
wavy,
|
|
71
|
+
double,
|
|
72
|
+
dotted,
|
|
73
|
+
dashed,
|
|
74
|
+
),
|
|
75
|
+
);
|
|
76
|
+
|
|
77
|
+
// Defines text alignment options.
|
|
78
|
+
$aligns: (left, start, right, end, justify, center);
|
|
79
|
+
|
|
80
|
+
// Defines the number of columns/rows in the grid system.
|
|
81
|
+
$axisDivisions: 12 !default;
|
|
82
|
+
|
|
83
|
+
// Defines flexbox properties.
|
|
84
|
+
$flexProperties: (
|
|
85
|
+
flex-wrap: wrap nowrap,
|
|
86
|
+
flex-direction: row row-reverse column column-reverse,
|
|
87
|
+
);
|
|
88
|
+
|
|
89
|
+
// Defines responsive breakpoint values.
|
|
90
|
+
$breakpoints: (
|
|
91
|
+
null: 0,
|
|
92
|
+
sm: 576px,
|
|
93
|
+
md: 768px,
|
|
94
|
+
lg: 992px,
|
|
95
|
+
xl: 1200px,
|
|
96
|
+
xxl: 1400px,
|
|
97
|
+
) !default;
|
|
98
|
+
|
|
99
|
+
// Defines container max-widths and padding at different breakpoints.
|
|
100
|
+
$wrappers: (
|
|
101
|
+
null: 100% 1.5rem,
|
|
102
|
+
sm: 540px 2rem,
|
|
103
|
+
md: 720px 3rem,
|
|
104
|
+
lg: 960px 3rem,
|
|
105
|
+
xl: 1140px 2rem,
|
|
106
|
+
xxl: 1320px 2rem,
|
|
107
|
+
) !default;
|
|
108
|
+
|
|
109
|
+
// Defines display utility options.
|
|
110
|
+
$displays: (inline, block, inline-block, flex, inline-flex, inline-grid, table, table-cell, none);
|
|
111
|
+
|
|
112
|
+
// Defines overflow directions.
|
|
113
|
+
$overflowsDirections: (null, 'x', 'y');
|
|
114
|
+
// Defines overflow behaviors.
|
|
115
|
+
$overflows: (visible, hidden, auto, scroll);
|
|
116
|
+
// Defines object-fit property values.
|
|
117
|
+
$objectsFits: (cover, fill, contain, none);
|
|
118
|
+
|
|
119
|
+
// Defines available opacity values.
|
|
120
|
+
$opacities: (10, 20, 30, 40, 50, 60, 70, 80, 90, 100) !default;
|
|
121
|
+
|
|
122
|
+
// Defines blur values for filter properties.
|
|
123
|
+
$blurValues: (5, 10, 15, 25) !default;
|
|
124
|
+
|
|
125
|
+
// Defines available cursor types.
|
|
126
|
+
$cursors: (
|
|
127
|
+
alias,
|
|
128
|
+
auto,
|
|
129
|
+
cell,
|
|
130
|
+
context-menu,
|
|
131
|
+
copy,
|
|
132
|
+
crosshair,
|
|
133
|
+
default,
|
|
134
|
+
grab,
|
|
135
|
+
grabbing,
|
|
136
|
+
help,
|
|
137
|
+
move,
|
|
138
|
+
no-drop,
|
|
139
|
+
none,
|
|
140
|
+
not-allowed,
|
|
141
|
+
pointer,
|
|
142
|
+
progress,
|
|
143
|
+
col-resize,
|
|
144
|
+
row-resize,
|
|
145
|
+
text,
|
|
146
|
+
wait,
|
|
147
|
+
zoom-in,
|
|
148
|
+
zoom-out
|
|
149
|
+
);
|
|
150
|
+
|
|
151
|
+
// Defines shadow presets.
|
|
152
|
+
$shadows: (
|
|
153
|
+
'light': (
|
|
154
|
+
x: 0,
|
|
155
|
+
y: 2,
|
|
156
|
+
blur: 5,
|
|
157
|
+
spread: 0,
|
|
158
|
+
opacity: 0.15,
|
|
159
|
+
),
|
|
160
|
+
'soft': (
|
|
161
|
+
x: 2,
|
|
162
|
+
y: 2,
|
|
163
|
+
blur: 12,
|
|
164
|
+
spread: 0,
|
|
165
|
+
opacity: 0.2,
|
|
166
|
+
),
|
|
167
|
+
'medium': (
|
|
168
|
+
x: 0,
|
|
169
|
+
y: 10,
|
|
170
|
+
blur: 20,
|
|
171
|
+
spread: 0,
|
|
172
|
+
opacity: 0.2,
|
|
173
|
+
),
|
|
174
|
+
'solid': (
|
|
175
|
+
x: 0,
|
|
176
|
+
y: 4,
|
|
177
|
+
blur: 10,
|
|
178
|
+
spread: 0,
|
|
179
|
+
opacity: 0.3,
|
|
180
|
+
),
|
|
181
|
+
'ambient': (
|
|
182
|
+
x: 0,
|
|
183
|
+
y: 0,
|
|
184
|
+
blur: 40,
|
|
185
|
+
spread: 10,
|
|
186
|
+
opacity: 0.1,
|
|
187
|
+
),
|
|
188
|
+
'flat': (
|
|
189
|
+
x: 0,
|
|
190
|
+
y: 6,
|
|
191
|
+
blur: 6,
|
|
192
|
+
spread: 4,
|
|
193
|
+
opacity: 0.2,
|
|
194
|
+
),
|
|
195
|
+
'floating': (
|
|
196
|
+
x: 0,
|
|
197
|
+
y: 20,
|
|
198
|
+
blur: 40,
|
|
199
|
+
spread: 0,
|
|
200
|
+
opacity: 0.15,
|
|
201
|
+
),
|
|
202
|
+
);
|
|
203
|
+
|
|
204
|
+
// Defines utility classes for clearing properties.
|
|
205
|
+
$clearanceOptions: (
|
|
206
|
+
no-bg: (
|
|
207
|
+
background: unset,
|
|
208
|
+
background-color: unset,
|
|
209
|
+
),
|
|
210
|
+
no-border: (
|
|
211
|
+
border: unset,
|
|
212
|
+
),
|
|
213
|
+
no-radius: (
|
|
214
|
+
border-radius: unset,
|
|
215
|
+
),
|
|
216
|
+
no-events: (
|
|
217
|
+
pointer-events: none,
|
|
218
|
+
),
|
|
219
|
+
no-position: (
|
|
220
|
+
position: unset,
|
|
221
|
+
),
|
|
222
|
+
);
|
|
223
|
+
|
|
224
|
+
// Defines available position values.
|
|
225
|
+
$positions: static, relative, fixed, absolute, sticky;
|
|
226
|
+
|
|
227
|
+
// Defines inset positioning options.
|
|
228
|
+
$insetPositions: null, inline, block;
|
|
229
|
+
// Defines default inset value.
|
|
230
|
+
$insetValues: (0, 5, 15, 25) !default;
|
|
231
|
+
|
|
232
|
+
// Defines the step for spacing utilities.
|
|
233
|
+
$spacesStep: 5;
|
|
234
|
+
// Defines properties for width and height utilities.
|
|
235
|
+
$spacesDirections: (
|
|
236
|
+
'w': width,
|
|
237
|
+
'min#{\:}w': min-width,
|
|
238
|
+
'max#{\:}w': max-width,
|
|
239
|
+
'h': height,
|
|
240
|
+
'min#{\:}h': min-height,
|
|
241
|
+
'max#{\:}h': max-height,
|
|
242
|
+
);
|
|
243
|
+
|
|
244
|
+
// Defines properties for padding, margin and gap utilities.
|
|
245
|
+
$gutters: (
|
|
246
|
+
p: padding,
|
|
247
|
+
px: padding-inline,
|
|
248
|
+
py: padding-block,
|
|
249
|
+
ps: padding-inline-start,
|
|
250
|
+
pe: padding-inline-end,
|
|
251
|
+
pt: padding-block-start,
|
|
252
|
+
pb: padding-block-end,
|
|
253
|
+
m: margin,
|
|
254
|
+
mx: margin-inline,
|
|
255
|
+
my: margin-block,
|
|
256
|
+
ms: margin-inline-start,
|
|
257
|
+
me: margin-inline-end,
|
|
258
|
+
mt: margin-block-start,
|
|
259
|
+
mb: margin-block-end,
|
|
260
|
+
g: gap,
|
|
261
|
+
gx: column-gap,
|
|
262
|
+
gy: row-gap,
|
|
263
|
+
);
|
|
264
|
+
|
|
265
|
+
// Defines values for gutter utilities.
|
|
266
|
+
$guttersValues: (
|
|
267
|
+
auto: auto,
|
|
268
|
+
1: 0.25rem,
|
|
269
|
+
2: 0.5rem,
|
|
270
|
+
3: 0.75rem,
|
|
271
|
+
4: 1rem,
|
|
272
|
+
5: 1.5rem,
|
|
273
|
+
6: 2rem,
|
|
274
|
+
) !default;
|
|
275
|
+
|
|
276
|
+
// Defines the default border width.
|
|
277
|
+
$bordersValue: 10 !default;
|
|
278
|
+
// Defines border direction properties.
|
|
279
|
+
$bordersDirections: (
|
|
280
|
+
null: border,
|
|
281
|
+
'top': border-block-start,
|
|
282
|
+
'bottom': border-block-end,
|
|
283
|
+
'start': border-inline-start,
|
|
284
|
+
'end': border-inline-end,
|
|
285
|
+
);
|
|
286
|
+
|
|
287
|
+
// Defines available border-radius values.
|
|
288
|
+
$radiuses: (5, 10, 15, 25) !default;
|
|
289
|
+
|
|
290
|
+
// Defines border-radius direction properties.
|
|
291
|
+
$radiusDirection: (
|
|
292
|
+
null: (
|
|
293
|
+
border-radius,
|
|
294
|
+
),
|
|
295
|
+
'top': (
|
|
296
|
+
border-start-start-radius,
|
|
297
|
+
border-start-end-radius,
|
|
298
|
+
),
|
|
299
|
+
'bottom': (
|
|
300
|
+
border-end-start-radius,
|
|
301
|
+
border-end-end-radius,
|
|
302
|
+
),
|
|
303
|
+
'start': (
|
|
304
|
+
border-start-start-radius,
|
|
305
|
+
border-end-start-radius,
|
|
306
|
+
),
|
|
307
|
+
'end': (
|
|
308
|
+
border-start-end-radius,
|
|
309
|
+
border-end-end-radius,
|
|
310
|
+
),
|
|
311
|
+
'top-start': (
|
|
312
|
+
border-start-start-radius,
|
|
313
|
+
),
|
|
314
|
+
'top-end': (
|
|
315
|
+
border-start-end-radius,
|
|
316
|
+
),
|
|
317
|
+
'bottom-start': (
|
|
318
|
+
border-end-start-radius,
|
|
319
|
+
),
|
|
320
|
+
'bottom-end': (
|
|
321
|
+
border-end-end-radius,
|
|
322
|
+
),
|
|
323
|
+
);
|
|
324
|
+
|
|
325
|
+
$justify: (
|
|
326
|
+
justify: (
|
|
327
|
+
content: (
|
|
328
|
+
start,
|
|
329
|
+
center,
|
|
330
|
+
end,
|
|
331
|
+
between,
|
|
332
|
+
around,
|
|
333
|
+
evenly,
|
|
334
|
+
),
|
|
335
|
+
self: (
|
|
336
|
+
auto,
|
|
337
|
+
center,
|
|
338
|
+
stretch,
|
|
339
|
+
),
|
|
340
|
+
),
|
|
341
|
+
align: (
|
|
342
|
+
content: (
|
|
343
|
+
start,
|
|
344
|
+
center,
|
|
345
|
+
end,
|
|
346
|
+
around,
|
|
347
|
+
between,
|
|
348
|
+
stretch,
|
|
349
|
+
),
|
|
350
|
+
items: (
|
|
351
|
+
start,
|
|
352
|
+
center,
|
|
353
|
+
end,
|
|
354
|
+
stretch,
|
|
355
|
+
baseline,
|
|
356
|
+
),
|
|
357
|
+
self: (
|
|
358
|
+
auto,
|
|
359
|
+
start,
|
|
360
|
+
center,
|
|
361
|
+
end,
|
|
362
|
+
stretch,
|
|
363
|
+
baseline,
|
|
364
|
+
),
|
|
365
|
+
),
|
|
366
|
+
);
|
|
@@ -0,0 +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;
|
|
@@ -0,0 +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;
|