@guebbit/css-toolkit 1.2.0 → 1.2.2

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.
Files changed (54) hide show
  1. package/LICENSE +661 -661
  2. package/README.md +5 -5
  3. package/docs/.postcssrc.cjs +11 -11
  4. package/docs/.vitepress/config.ts +88 -88
  5. package/docs/.vitepress/dist/404.html +1 -1
  6. package/docs/.vitepress/dist/assets/{app.Cez_7bx7.js → app.BQiPqeST.js} +1 -1
  7. package/docs/.vitepress/dist/assets/chunks/@localSearchIndexroot.C9A3MdGo.js +1 -0
  8. package/docs/.vitepress/dist/assets/chunks/{VPLocalSearchBox.lfLgIsvm.js → VPLocalSearchBox.Bz_zRP0g.js} +1 -1
  9. package/docs/.vitepress/dist/assets/chunks/{theme.ZIndENJH.js → theme.DOuq-6g9.js} +2 -2
  10. package/docs/.vitepress/dist/colors/bootstrap.html +2 -2
  11. package/docs/.vitepress/dist/colors/brands.html +2 -2
  12. package/docs/.vitepress/dist/colors/customs.html +2 -2
  13. package/docs/.vitepress/dist/functions/colors.html +2 -2
  14. package/docs/.vitepress/dist/functions/helpers.html +2 -2
  15. package/docs/.vitepress/dist/functions/strings.html +2 -2
  16. package/docs/.vitepress/dist/index.html +2 -2
  17. package/docs/.vitepress/dist/mixins/build-aspect-ratio.html +2 -2
  18. package/docs/.vitepress/dist/mixins/build-compatibility.html +2 -2
  19. package/docs/.vitepress/dist/mixins/build-scrollbar.html +2 -2
  20. package/docs/.vitepress/dist/mixins/create-colors.html +2 -2
  21. package/docs/.vitepress/dist/mixins/create-helper-margin.html +2 -2
  22. package/docs/.vitepress/dist/mixins/create-helper-padding.html +2 -2
  23. package/docs/.vitepress/dist/mixins/create-instruction.html +2 -2
  24. package/docs/.vitepress/theme/index.js +11 -11
  25. package/docs/functions/colors.md +65 -65
  26. package/docs/logo.svg +55 -55
  27. package/docs/logotype.svg +149 -149
  28. package/docs/mixins/build-compatibility.md +22 -22
  29. package/docs/mixins/build-scrollbar.md +18 -18
  30. package/docs/mixins/create-helper-margin.md +25 -25
  31. package/docs/mixins/create-helper-padding.md +24 -24
  32. package/docs/mixins/create-instruction.md +32 -32
  33. package/package.json +61 -61
  34. package/src/colors/_bootstrap.scss +179 -179
  35. package/src/colors/_brands.scss +19 -19
  36. package/src/colors/_customs.scss +52 -52
  37. package/src/colors/_index.scss +199 -199
  38. package/src/functions/_colors.scss +133 -121
  39. package/src/functions/_helpers.scss +44 -42
  40. package/src/functions/_strings.scss +30 -30
  41. package/src/index.scss +12 -12
  42. package/src/mixins/_build-aspect-ratio.scss +36 -36
  43. package/src/mixins/_build-compatibility.scss +27 -27
  44. package/src/mixins/_build-scrollbar.scss +31 -31
  45. package/src/mixins/_create-colors.scss +118 -118
  46. package/src/mixins/_create-helper-margin.scss +38 -38
  47. package/src/mixins/_create-helper-padding.scss +40 -40
  48. package/src/mixins/_create-instructions.scss +11 -11
  49. package/test/compile.test.js +105 -105
  50. package/test/lint.test.js +48 -48
  51. package/test/test.css +104 -99
  52. package/test/test.scss +158 -158
  53. package/vite.config.ts +25 -25
  54. package/docs/.vitepress/dist/assets/chunks/@localSearchIndexroot.CkfJPSmi.js +0 -1
@@ -1,180 +1,180 @@
1
- @use "../functions/colors" as color-functions;
2
-
3
- // Material colors by Bootstrap
4
- // https://github.com/twbs/bootstrap
5
- // https://github.com/twbs/bootstrap/blob/v5.3.2/scss/_variables.scss
6
-
7
- // Variables should follow the `$component-state-property-size` formula for
8
- // consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.
9
-
10
-
11
- // scss-docs-start gray-color-variables
12
- $white: #fff !default;
13
- $gray-100: #f8f9fa !default;
14
- $gray-200: #e9ecef !default;
15
- $gray-300: #dee2e6 !default;
16
- $gray-400: #ced4da !default;
17
- $gray-500: #adb5bd !default;
18
- $gray-600: #6c757d !default;
19
- $gray-700: #495057 !default;
20
- $gray-800: #343a40 !default;
21
- $gray-900: #212529 !default;
22
- $black: #000 !default;
23
- // scss-docs-end gray-color-variables
24
-
25
- // fusv-disable
26
- // scss-docs-start gray-colors-map
27
- $grays: (
28
- "100": $gray-100,
29
- "200": $gray-200,
30
- "300": $gray-300,
31
- "400": $gray-400,
32
- "500": $gray-500,
33
- "600": $gray-600,
34
- "700": $gray-700,
35
- "800": $gray-800,
36
- "900": $gray-900
37
- ) !default;
38
- // scss-docs-end gray-colors-map
39
- // fusv-enable
40
-
41
- // scss-docs-start color-variables
42
- $blue: #0d6efd !default;
43
- $indigo: #6610f2 !default;
44
- $purple: #6f42c1 !default;
45
- $pink: #d63384 !default;
46
- $red: #dc3545 !default;
47
- $orange: #fd7e14 !default;
48
- $yellow: #ffc107 !default;
49
- $green: #198754 !default;
50
- $teal: #20c997 !default;
51
- $cyan: #0dcaf0 !default;
52
- // scss-docs-end color-variables
53
-
54
- // scss-docs-start colors-map
55
- $colors: (
56
- "blue": $blue,
57
- "indigo": $indigo,
58
- "purple": $purple,
59
- "pink": $pink,
60
- "red": $red,
61
- "orange": $orange,
62
- "yellow": $yellow,
63
- "green": $green,
64
- "teal": $teal,
65
- "cyan": $cyan,
66
- "black": $black,
67
- "white": $white,
68
- "gray": $gray-600,
69
- "gray-dark": $gray-800
70
- ) !default;
71
- // scss-docs-end colors-map
72
-
73
- // The contrast ratio to reach against white, to determine if color changes from "light" to "dark". Acceptable values for WCAG 2.0 are 3, 4.5 and 7.
74
- // See https://www.w3.org/TR/WCAG20/#visual-audio-contrast-contrast
75
- $min-contrast-ratio: 4.5 !default;
76
-
77
- // Customize the light and dark text colors for use in our color contrast function.
78
- $color-contrast-dark: $black !default;
79
- $color-contrast-light: $white !default;
80
-
81
- // fusv-disable
82
- $blue-100: color-functions.color-tint($blue, 80%) !default;
83
- $blue-200: color-functions.color-tint($blue, 60%) !default;
84
- $blue-300: color-functions.color-tint($blue, 40%) !default;
85
- $blue-400: color-functions.color-tint($blue, 20%) !default;
86
- $blue-500: $blue !default;
87
- $blue-600: color-functions.color-shade($blue, 20%) !default;
88
- $blue-700: color-functions.color-shade($blue, 40%) !default;
89
- $blue-800: color-functions.color-shade($blue, 60%) !default;
90
- $blue-900: color-functions.color-shade($blue, 80%) !default;
91
-
92
- $indigo-100: color-functions.color-tint($indigo, 80%) !default;
93
- $indigo-200: color-functions.color-tint($indigo, 60%) !default;
94
- $indigo-300: color-functions.color-tint($indigo, 40%) !default;
95
- $indigo-400: color-functions.color-tint($indigo, 20%) !default;
96
- $indigo-500: $indigo !default;
97
- $indigo-600: color-functions.color-shade($indigo, 20%) !default;
98
- $indigo-700: color-functions.color-shade($indigo, 40%) !default;
99
- $indigo-800: color-functions.color-shade($indigo, 60%) !default;
100
- $indigo-900: color-functions.color-shade($indigo, 80%) !default;
101
-
102
- $purple-100: color-functions.color-tint($purple, 80%) !default;
103
- $purple-200: color-functions.color-tint($purple, 60%) !default;
104
- $purple-300: color-functions.color-tint($purple, 40%) !default;
105
- $purple-400: color-functions.color-tint($purple, 20%) !default;
106
- $purple-500: $purple !default;
107
- $purple-600: color-functions.color-shade($purple, 20%) !default;
108
- $purple-700: color-functions.color-shade($purple, 40%) !default;
109
- $purple-800: color-functions.color-shade($purple, 60%) !default;
110
- $purple-900: color-functions.color-shade($purple, 80%) !default;
111
-
112
- $pink-100: color-functions.color-tint($pink, 80%) !default;
113
- $pink-200: color-functions.color-tint($pink, 60%) !default;
114
- $pink-300: color-functions.color-tint($pink, 40%) !default;
115
- $pink-400: color-functions.color-tint($pink, 20%) !default;
116
- $pink-500: $pink !default;
117
- $pink-600: color-functions.color-shade($pink, 20%) !default;
118
- $pink-700: color-functions.color-shade($pink, 40%) !default;
119
- $pink-800: color-functions.color-shade($pink, 60%) !default;
120
- $pink-900: color-functions.color-shade($pink, 80%) !default;
121
-
122
- $red-100: color-functions.color-tint($red, 80%) !default;
123
- $red-200: color-functions.color-tint($red, 60%) !default;
124
- $red-300: color-functions.color-tint($red, 40%) !default;
125
- $red-400: color-functions.color-tint($red, 20%) !default;
126
- $red-500: $red !default;
127
- $red-600: color-functions.color-shade($red, 20%) !default;
128
- $red-700: color-functions.color-shade($red, 40%) !default;
129
- $red-800: color-functions.color-shade($red, 60%) !default;
130
- $red-900: color-functions.color-shade($red, 80%) !default;
131
-
132
- $orange-100: color-functions.color-tint($orange, 80%) !default;
133
- $orange-200: color-functions.color-tint($orange, 60%) !default;
134
- $orange-300: color-functions.color-tint($orange, 40%) !default;
135
- $orange-400: color-functions.color-tint($orange, 20%) !default;
136
- $orange-500: $orange !default;
137
- $orange-600: color-functions.color-shade($orange, 20%) !default;
138
- $orange-700: color-functions.color-shade($orange, 40%) !default;
139
- $orange-800: color-functions.color-shade($orange, 60%) !default;
140
- $orange-900: color-functions.color-shade($orange, 80%) !default;
141
-
142
- $yellow-100: color-functions.color-tint($yellow, 80%) !default;
143
- $yellow-200: color-functions.color-tint($yellow, 60%) !default;
144
- $yellow-300: color-functions.color-tint($yellow, 40%) !default;
145
- $yellow-400: color-functions.color-tint($yellow, 20%) !default;
146
- $yellow-500: $yellow !default;
147
- $yellow-600: color-functions.color-shade($yellow, 20%) !default;
148
- $yellow-700: color-functions.color-shade($yellow, 40%) !default;
149
- $yellow-800: color-functions.color-shade($yellow, 60%) !default;
150
- $yellow-900: color-functions.color-shade($yellow, 80%) !default;
151
-
152
- $green-100: color-functions.color-tint($green, 80%) !default;
153
- $green-200: color-functions.color-tint($green, 60%) !default;
154
- $green-300: color-functions.color-tint($green, 40%) !default;
155
- $green-400: color-functions.color-tint($green, 20%) !default;
156
- $green-500: $green !default;
157
- $green-600: color-functions.color-shade($green, 20%) !default;
158
- $green-700: color-functions.color-shade($green, 40%) !default;
159
- $green-800: color-functions.color-shade($green, 60%) !default;
160
- $green-900: color-functions.color-shade($green, 80%) !default;
161
-
162
- $teal-100: color-functions.color-tint($teal, 80%) !default;
163
- $teal-200: color-functions.color-tint($teal, 60%) !default;
164
- $teal-300: color-functions.color-tint($teal, 40%) !default;
165
- $teal-400: color-functions.color-tint($teal, 20%) !default;
166
- $teal-500: $teal !default;
167
- $teal-600: color-functions.color-shade($teal, 20%) !default;
168
- $teal-700: color-functions.color-shade($teal, 40%) !default;
169
- $teal-800: color-functions.color-shade($teal, 60%) !default;
170
- $teal-900: color-functions.color-shade($teal, 80%) !default;
171
-
172
- $cyan-100: color-functions.color-tint($cyan, 80%) !default;
173
- $cyan-200: color-functions.color-tint($cyan, 60%) !default;
174
- $cyan-300: color-functions.color-tint($cyan, 40%) !default;
175
- $cyan-400: color-functions.color-tint($cyan, 20%) !default;
176
- $cyan-500: $cyan !default;
177
- $cyan-600: color-functions.color-shade($cyan, 20%) !default;
178
- $cyan-700: color-functions.color-shade($cyan, 40%) !default;
179
- $cyan-800: color-functions.color-shade($cyan, 60%) !default;
1
+ @use "../functions/colors" as color-functions;
2
+
3
+ // Material colors by Bootstrap
4
+ // https://github.com/twbs/bootstrap
5
+ // https://github.com/twbs/bootstrap/blob/v5.3.2/scss/_variables.scss
6
+
7
+ // Variables should follow the `$component-state-property-size` formula for
8
+ // consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.
9
+
10
+
11
+ // scss-docs-start gray-color-variables
12
+ $white: #fff !default;
13
+ $gray-100: #f8f9fa !default;
14
+ $gray-200: #e9ecef !default;
15
+ $gray-300: #dee2e6 !default;
16
+ $gray-400: #ced4da !default;
17
+ $gray-500: #adb5bd !default;
18
+ $gray-600: #6c757d !default;
19
+ $gray-700: #495057 !default;
20
+ $gray-800: #343a40 !default;
21
+ $gray-900: #212529 !default;
22
+ $black: #000 !default;
23
+ // scss-docs-end gray-color-variables
24
+
25
+ // fusv-disable
26
+ // scss-docs-start gray-colors-map
27
+ $grays: (
28
+ "100": $gray-100,
29
+ "200": $gray-200,
30
+ "300": $gray-300,
31
+ "400": $gray-400,
32
+ "500": $gray-500,
33
+ "600": $gray-600,
34
+ "700": $gray-700,
35
+ "800": $gray-800,
36
+ "900": $gray-900
37
+ ) !default;
38
+ // scss-docs-end gray-colors-map
39
+ // fusv-enable
40
+
41
+ // scss-docs-start color-variables
42
+ $blue: #0d6efd !default;
43
+ $indigo: #6610f2 !default;
44
+ $purple: #6f42c1 !default;
45
+ $pink: #d63384 !default;
46
+ $red: #dc3545 !default;
47
+ $orange: #fd7e14 !default;
48
+ $yellow: #ffc107 !default;
49
+ $green: #198754 !default;
50
+ $teal: #20c997 !default;
51
+ $cyan: #0dcaf0 !default;
52
+ // scss-docs-end color-variables
53
+
54
+ // scss-docs-start colors-map
55
+ $colors: (
56
+ "blue": $blue,
57
+ "indigo": $indigo,
58
+ "purple": $purple,
59
+ "pink": $pink,
60
+ "red": $red,
61
+ "orange": $orange,
62
+ "yellow": $yellow,
63
+ "green": $green,
64
+ "teal": $teal,
65
+ "cyan": $cyan,
66
+ "black": $black,
67
+ "white": $white,
68
+ "gray": $gray-600,
69
+ "gray-dark": $gray-800
70
+ ) !default;
71
+ // scss-docs-end colors-map
72
+
73
+ // The contrast ratio to reach against white, to determine if color changes from "light" to "dark". Acceptable values for WCAG 2.0 are 3, 4.5 and 7.
74
+ // See https://www.w3.org/TR/WCAG20/#visual-audio-contrast-contrast
75
+ $min-contrast-ratio: 4.5 !default;
76
+
77
+ // Customize the light and dark text colors for use in our color contrast function.
78
+ $color-contrast-dark: $black !default;
79
+ $color-contrast-light: $white !default;
80
+
81
+ // fusv-disable
82
+ $blue-100: color-functions.color-tint($blue, 80%) !default;
83
+ $blue-200: color-functions.color-tint($blue, 60%) !default;
84
+ $blue-300: color-functions.color-tint($blue, 40%) !default;
85
+ $blue-400: color-functions.color-tint($blue, 20%) !default;
86
+ $blue-500: $blue !default;
87
+ $blue-600: color-functions.color-shade($blue, 20%) !default;
88
+ $blue-700: color-functions.color-shade($blue, 40%) !default;
89
+ $blue-800: color-functions.color-shade($blue, 60%) !default;
90
+ $blue-900: color-functions.color-shade($blue, 80%) !default;
91
+
92
+ $indigo-100: color-functions.color-tint($indigo, 80%) !default;
93
+ $indigo-200: color-functions.color-tint($indigo, 60%) !default;
94
+ $indigo-300: color-functions.color-tint($indigo, 40%) !default;
95
+ $indigo-400: color-functions.color-tint($indigo, 20%) !default;
96
+ $indigo-500: $indigo !default;
97
+ $indigo-600: color-functions.color-shade($indigo, 20%) !default;
98
+ $indigo-700: color-functions.color-shade($indigo, 40%) !default;
99
+ $indigo-800: color-functions.color-shade($indigo, 60%) !default;
100
+ $indigo-900: color-functions.color-shade($indigo, 80%) !default;
101
+
102
+ $purple-100: color-functions.color-tint($purple, 80%) !default;
103
+ $purple-200: color-functions.color-tint($purple, 60%) !default;
104
+ $purple-300: color-functions.color-tint($purple, 40%) !default;
105
+ $purple-400: color-functions.color-tint($purple, 20%) !default;
106
+ $purple-500: $purple !default;
107
+ $purple-600: color-functions.color-shade($purple, 20%) !default;
108
+ $purple-700: color-functions.color-shade($purple, 40%) !default;
109
+ $purple-800: color-functions.color-shade($purple, 60%) !default;
110
+ $purple-900: color-functions.color-shade($purple, 80%) !default;
111
+
112
+ $pink-100: color-functions.color-tint($pink, 80%) !default;
113
+ $pink-200: color-functions.color-tint($pink, 60%) !default;
114
+ $pink-300: color-functions.color-tint($pink, 40%) !default;
115
+ $pink-400: color-functions.color-tint($pink, 20%) !default;
116
+ $pink-500: $pink !default;
117
+ $pink-600: color-functions.color-shade($pink, 20%) !default;
118
+ $pink-700: color-functions.color-shade($pink, 40%) !default;
119
+ $pink-800: color-functions.color-shade($pink, 60%) !default;
120
+ $pink-900: color-functions.color-shade($pink, 80%) !default;
121
+
122
+ $red-100: color-functions.color-tint($red, 80%) !default;
123
+ $red-200: color-functions.color-tint($red, 60%) !default;
124
+ $red-300: color-functions.color-tint($red, 40%) !default;
125
+ $red-400: color-functions.color-tint($red, 20%) !default;
126
+ $red-500: $red !default;
127
+ $red-600: color-functions.color-shade($red, 20%) !default;
128
+ $red-700: color-functions.color-shade($red, 40%) !default;
129
+ $red-800: color-functions.color-shade($red, 60%) !default;
130
+ $red-900: color-functions.color-shade($red, 80%) !default;
131
+
132
+ $orange-100: color-functions.color-tint($orange, 80%) !default;
133
+ $orange-200: color-functions.color-tint($orange, 60%) !default;
134
+ $orange-300: color-functions.color-tint($orange, 40%) !default;
135
+ $orange-400: color-functions.color-tint($orange, 20%) !default;
136
+ $orange-500: $orange !default;
137
+ $orange-600: color-functions.color-shade($orange, 20%) !default;
138
+ $orange-700: color-functions.color-shade($orange, 40%) !default;
139
+ $orange-800: color-functions.color-shade($orange, 60%) !default;
140
+ $orange-900: color-functions.color-shade($orange, 80%) !default;
141
+
142
+ $yellow-100: color-functions.color-tint($yellow, 80%) !default;
143
+ $yellow-200: color-functions.color-tint($yellow, 60%) !default;
144
+ $yellow-300: color-functions.color-tint($yellow, 40%) !default;
145
+ $yellow-400: color-functions.color-tint($yellow, 20%) !default;
146
+ $yellow-500: $yellow !default;
147
+ $yellow-600: color-functions.color-shade($yellow, 20%) !default;
148
+ $yellow-700: color-functions.color-shade($yellow, 40%) !default;
149
+ $yellow-800: color-functions.color-shade($yellow, 60%) !default;
150
+ $yellow-900: color-functions.color-shade($yellow, 80%) !default;
151
+
152
+ $green-100: color-functions.color-tint($green, 80%) !default;
153
+ $green-200: color-functions.color-tint($green, 60%) !default;
154
+ $green-300: color-functions.color-tint($green, 40%) !default;
155
+ $green-400: color-functions.color-tint($green, 20%) !default;
156
+ $green-500: $green !default;
157
+ $green-600: color-functions.color-shade($green, 20%) !default;
158
+ $green-700: color-functions.color-shade($green, 40%) !default;
159
+ $green-800: color-functions.color-shade($green, 60%) !default;
160
+ $green-900: color-functions.color-shade($green, 80%) !default;
161
+
162
+ $teal-100: color-functions.color-tint($teal, 80%) !default;
163
+ $teal-200: color-functions.color-tint($teal, 60%) !default;
164
+ $teal-300: color-functions.color-tint($teal, 40%) !default;
165
+ $teal-400: color-functions.color-tint($teal, 20%) !default;
166
+ $teal-500: $teal !default;
167
+ $teal-600: color-functions.color-shade($teal, 20%) !default;
168
+ $teal-700: color-functions.color-shade($teal, 40%) !default;
169
+ $teal-800: color-functions.color-shade($teal, 60%) !default;
170
+ $teal-900: color-functions.color-shade($teal, 80%) !default;
171
+
172
+ $cyan-100: color-functions.color-tint($cyan, 80%) !default;
173
+ $cyan-200: color-functions.color-tint($cyan, 60%) !default;
174
+ $cyan-300: color-functions.color-tint($cyan, 40%) !default;
175
+ $cyan-400: color-functions.color-tint($cyan, 20%) !default;
176
+ $cyan-500: $cyan !default;
177
+ $cyan-600: color-functions.color-shade($cyan, 20%) !default;
178
+ $cyan-700: color-functions.color-shade($cyan, 40%) !default;
179
+ $cyan-800: color-functions.color-shade($cyan, 60%) !default;
180
180
  $cyan-900: color-functions.color-shade($cyan, 80%) !default;
@@ -1,20 +1,20 @@
1
- $brand-facebook: #3b5998;
2
- $brand-youtube: #cc181e;
3
- $brand-twitter: #3cf;
4
- $brand-skype: #00aff0;
5
- $brand-linkedin: #1565c0;
6
- $brand-whatsapp: #4ac959;
7
- $brand-telegram: #08c;
8
- $brand-twitch: #6441a4;
9
- $brand-pinterest: #e60023;
10
- $brand-reddit: #ff4301;
11
- $brand-tumblr: #35465c;
12
- $brand-patreon: #f96854;
13
- $brand-kickstarter: #05ce78;
14
- $brand-instagram: #f09433;
15
- $brand-tiktok: #25f4ee;
16
- $brand-google: #dc4a38;
17
- $brand-paypal: #003087;
18
- $brand-paypal2: #f2b938;
19
- $advanced-brand-instagram: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
1
+ $brand-facebook: #3b5998;
2
+ $brand-youtube: #cc181e;
3
+ $brand-twitter: #3cf;
4
+ $brand-skype: #00aff0;
5
+ $brand-linkedin: #1565c0;
6
+ $brand-whatsapp: #4ac959;
7
+ $brand-telegram: #08c;
8
+ $brand-twitch: #6441a4;
9
+ $brand-pinterest: #e60023;
10
+ $brand-reddit: #ff4301;
11
+ $brand-tumblr: #35465c;
12
+ $brand-patreon: #f96854;
13
+ $brand-kickstarter: #05ce78;
14
+ $brand-instagram: #f09433;
15
+ $brand-tiktok: #25f4ee;
16
+ $brand-google: #dc4a38;
17
+ $brand-paypal: #003087;
18
+ $brand-paypal2: #f2b938;
19
+ $advanced-brand-instagram: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
20
20
  $advanced-brand-tiktok: linear-gradient(90deg, #25f4ee 0%, #000 30%, #000 50%, #000 70%, #fe2c55 100%);
@@ -1,53 +1,53 @@
1
- @use "../functions/colors" as color-functions;
2
-
3
- $flatrica-green: #06a763 !default;
4
- $manga-red: #d41816 !default;
5
-
6
- $flatrica-green-100: color-functions.color-tint($flatrica-green, 80%);
7
- $flatrica-green-200: color-functions.color-tint($flatrica-green, 60%);
8
- $flatrica-green-300: color-functions.color-tint($flatrica-green, 40%);
9
- $flatrica-green-400: color-functions.color-tint($flatrica-green, 20%);
10
- $flatrica-green-500: $flatrica-green;
11
- $flatrica-green-600: color-functions.color-shade($flatrica-green, 20%);
12
- $flatrica-green-700: color-functions.color-shade($flatrica-green, 40%);
13
- $flatrica-green-800: color-functions.color-shade($flatrica-green, 60%);
14
- $flatrica-green-900: color-functions.color-shade($flatrica-green, 80%);
15
-
16
- $manga-red-100: color-functions.color-tint($manga-red, 80%);
17
- $manga-red-200: color-functions.color-tint($manga-red, 60%);
18
- $manga-red-300: color-functions.color-tint($manga-red, 40%);
19
- $manga-red-400: color-functions.color-tint($manga-red, 20%);
20
- $manga-red-500: $manga-red;
21
- $manga-red-600: color-functions.color-shade($manga-red, 20%);
22
- $manga-red-700: color-functions.color-shade($manga-red, 40%);
23
- $manga-red-800: color-functions.color-shade($manga-red, 60%);
24
- $manga-red-900: color-functions.color-shade($manga-red, 80%);
25
-
26
- $colors-collection: (
27
- "core": (
28
- "flatrica-green": $flatrica-green,
29
- "manga-red": $manga-red,
30
- ),
31
- "flatrica-green": (
32
- "100": $flatrica-green-100,
33
- "200": $flatrica-green-200,
34
- "300": $flatrica-green-300,
35
- "400": $flatrica-green-400,
36
- "500": $flatrica-green-500,
37
- "600": $flatrica-green-600,
38
- "700": $flatrica-green-700,
39
- "800": $flatrica-green-800,
40
- "900": $flatrica-green-900,
41
- ),
42
- "manga-red": (
43
- "100": $manga-red-100,
44
- "200": $manga-red-200,
45
- "300": $manga-red-300,
46
- "400": $manga-red-400,
47
- "500": $manga-red-500,
48
- "600": $manga-red-600,
49
- "700": $manga-red-700,
50
- "800": $manga-red-800,
51
- "900": $manga-red-900,
52
- ),
1
+ @use "../functions/colors" as color-functions;
2
+
3
+ $flatrica-green: #06a763 !default;
4
+ $manga-red: #d41816 !default;
5
+
6
+ $flatrica-green-100: color-functions.color-tint($flatrica-green, 80%);
7
+ $flatrica-green-200: color-functions.color-tint($flatrica-green, 60%);
8
+ $flatrica-green-300: color-functions.color-tint($flatrica-green, 40%);
9
+ $flatrica-green-400: color-functions.color-tint($flatrica-green, 20%);
10
+ $flatrica-green-500: $flatrica-green;
11
+ $flatrica-green-600: color-functions.color-shade($flatrica-green, 20%);
12
+ $flatrica-green-700: color-functions.color-shade($flatrica-green, 40%);
13
+ $flatrica-green-800: color-functions.color-shade($flatrica-green, 60%);
14
+ $flatrica-green-900: color-functions.color-shade($flatrica-green, 80%);
15
+
16
+ $manga-red-100: color-functions.color-tint($manga-red, 80%);
17
+ $manga-red-200: color-functions.color-tint($manga-red, 60%);
18
+ $manga-red-300: color-functions.color-tint($manga-red, 40%);
19
+ $manga-red-400: color-functions.color-tint($manga-red, 20%);
20
+ $manga-red-500: $manga-red;
21
+ $manga-red-600: color-functions.color-shade($manga-red, 20%);
22
+ $manga-red-700: color-functions.color-shade($manga-red, 40%);
23
+ $manga-red-800: color-functions.color-shade($manga-red, 60%);
24
+ $manga-red-900: color-functions.color-shade($manga-red, 80%);
25
+
26
+ $colors-collection: (
27
+ "core": (
28
+ "flatrica-green": $flatrica-green,
29
+ "manga-red": $manga-red,
30
+ ),
31
+ "flatrica-green": (
32
+ "100": $flatrica-green-100,
33
+ "200": $flatrica-green-200,
34
+ "300": $flatrica-green-300,
35
+ "400": $flatrica-green-400,
36
+ "500": $flatrica-green-500,
37
+ "600": $flatrica-green-600,
38
+ "700": $flatrica-green-700,
39
+ "800": $flatrica-green-800,
40
+ "900": $flatrica-green-900,
41
+ ),
42
+ "manga-red": (
43
+ "100": $manga-red-100,
44
+ "200": $manga-red-200,
45
+ "300": $manga-red-300,
46
+ "400": $manga-red-400,
47
+ "500": $manga-red-500,
48
+ "600": $manga-red-600,
49
+ "700": $manga-red-700,
50
+ "800": $manga-red-800,
51
+ "900": $manga-red-900,
52
+ ),
53
53
  );