@acorex/styles 18.12.29 → 18.12.33
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/README.md +32 -32
- package/icons/fontawesome/_variables.scss +185 -185
- package/icons/fontawesome/fontawesome.scss +17 -17
- package/icons/huge/huge-bulk/_variables.scss +185 -185
- package/icons/huge/huge-bulk/bulk-rounded.scss +13 -13
- package/icons/huge/huge-duotone/_variables.scss +185 -185
- package/icons/huge/huge-duotone/duotone-rounded.scss +13 -13
- package/icons/huge/huge-solid/solid-rounded.scss +13 -13
- package/icons/huge/huge-solid/solid-sharp.scss +13 -13
- package/icons/huge/huge-solid/solid-standard.scss +13 -13
- package/icons/huge/huge-solid/variables/_rounded-variables.scss +185 -185
- package/icons/huge/huge-solid/variables/_sharp-variables.scss +185 -185
- package/icons/huge/huge-solid/variables/_standard-variables.scss +185 -185
- package/icons/huge/huge-stroke/stroke-rounded.scss +13 -13
- package/icons/huge/huge-stroke/stroke-sharp.scss +13 -13
- package/icons/huge/huge-stroke/stroke-standard.scss +13 -13
- package/icons/huge/huge-stroke/variables/_rounded-variables.scss +185 -185
- package/icons/huge/huge-stroke/variables/_sharp-variables.scss +185 -185
- package/icons/huge/huge-stroke/variables/_standard-variables.scss +185 -185
- package/icons/huge/huge-twotone/_variables.scss +185 -185
- package/icons/huge/huge-twotone/twotone-rounded.scss +13 -13
- package/icons/index.scss +570 -570
- package/icons/material/_variables.scss +185 -185
- package/icons/material/material.scss +22 -22
- package/index.css +3058 -0
- package/index.min.css +1 -0
- package/index.scss +9 -9
- package/package.json +11 -11
- package/src/base/_preflight.scss +405 -405
- package/src/base/index.scss +13 -13
- package/src/mixins/_look.scss +83 -83
- package/src/mixins/_media.scss +73 -73
- package/src/mixins/_util.scss +19 -19
- package/src/mixins/index.scss +3 -3
- package/src/shared/_action-item.scss +109 -109
- package/src/shared/_actionsheet.scss +20 -20
- package/src/shared/_check-box.scss +60 -60
- package/src/shared/_color-look.scss +864 -864
- package/src/shared/_drop-down.scss +76 -76
- package/src/shared/_editor-container.scss +258 -258
- package/src/shared/_general-button.scss +87 -87
- package/src/shared/_inputs.scss +16 -16
- package/src/shared/_list.scss +199 -199
- package/src/shared/_radio.scss +57 -57
- package/src/shared/_table.scss +149 -149
- package/src/shared/_utils.scss +84 -84
- package/src/shared/index.scss +12 -12
- package/src/utility/index.scss +24 -24
- package/src/variables/_colors.scss +2 -2
- package/src/variables/_degrees.scss +1 -1
- package/src/variables/index.scss +2 -2
- package/tailwind-base.js +234 -234
- package/themes/default.css +1 -0
- package/themes/default.scss +143 -143
package/tailwind-base.js
CHANGED
@@ -1,234 +1,234 @@
|
|
1
|
-
const plugin = require('tailwindcss/plugin');
|
2
|
-
const { withAnimations } = require('animated-tailwindcss');
|
3
|
-
|
4
|
-
function withOpacityValue(variable) {
|
5
|
-
return ({ opacityValue }) => {
|
6
|
-
if (opacityValue === undefined) {
|
7
|
-
return `rgb(var(${variable}))`;
|
8
|
-
}
|
9
|
-
return `rgb(var(${variable}) ,${opacityValue})`;
|
10
|
-
};
|
11
|
-
}
|
12
|
-
|
13
|
-
const childSelector = plugin(function ({ addVariant }) {
|
14
|
-
addVariant('child', '& > *');
|
15
|
-
addVariant('child-hover', '& > *:hover');
|
16
|
-
addVariant('child-focus', '& > *:focus');
|
17
|
-
addVariant('child-focus-within', '& > *:focus-within');
|
18
|
-
});
|
19
|
-
|
20
|
-
const _colors = {
|
21
|
-
ghost: 'rgba(var(--ax-color-ghost), <alpha-value>)',
|
22
|
-
'ghost-fore': 'rgba(var(--ax-color-ghost-fore), <alpha-value>)',
|
23
|
-
|
24
|
-
surface: 'rgba(var(--ax-color-surface), <alpha-value>)',
|
25
|
-
'surface-fore': 'rgba(var(--ax-color-surface-fore), <alpha-value>)',
|
26
|
-
|
27
|
-
'on-surface': 'rgba(var(--ax-color-on-surface), <alpha-value>)',
|
28
|
-
'on-surface-fore': 'rgba(var(--ax-color-on-surface-fore), <alpha-value>)',
|
29
|
-
|
30
|
-
'input-surface': 'rgba(var(--ax-color-input-surface), <alpha-value>)',
|
31
|
-
'input-surface-fore': 'rgba(var(--ax-color-input-surface-fore), <alpha-value>)',
|
32
|
-
};
|
33
|
-
|
34
|
-
const createPalete = function (colorName) {
|
35
|
-
return {
|
36
|
-
DEFAULT: `rgba(var(--ax-color-${colorName}-500), <alpha-value>)`,
|
37
|
-
fore: `rgba(var(--ax-color-${colorName}-fore), <alpha-value>)`,
|
38
|
-
'fore-tint': `rgba(var(--ax-color-${colorName}-fore-tint), <alpha-value>)`,
|
39
|
-
50: `rgba(var(--ax-color-${colorName}-50), <alpha-value>)`,
|
40
|
-
100: `rgba(var(--ax-color-${colorName}-100), <alpha-value>)`,
|
41
|
-
200: `rgba(var(--ax-color-${colorName}-200), <alpha-value>)`,
|
42
|
-
300: `rgba(var(--ax-color-${colorName}-300), <alpha-value>)`,
|
43
|
-
400: `rgba(var(--ax-color-${colorName}-400), <alpha-value>)`,
|
44
|
-
500: `rgba(var(--ax-color-${colorName}-500), <alpha-value>)`,
|
45
|
-
600: `rgba(var(--ax-color-${colorName}-600), <alpha-value>)`,
|
46
|
-
700: `rgba(var(--ax-color-${colorName}-700), <alpha-value>)`,
|
47
|
-
800: `rgba(var(--ax-color-${colorName}-800), <alpha-value>)`,
|
48
|
-
900: `rgba(var(--ax-color-${colorName}-900), <alpha-value>)`,
|
49
|
-
950: `rgba(var(--ax-color-${colorName}-950), <alpha-value>)`,
|
50
|
-
};
|
51
|
-
};
|
52
|
-
|
53
|
-
module.exports = withAnimations({
|
54
|
-
prefix: 'ax-',
|
55
|
-
content: ['./src/**/*.{html,ts,scss}', './projects/**/*.{html,ts,scss}'],
|
56
|
-
darkMode: 'class',
|
57
|
-
theme: {
|
58
|
-
extend: {
|
59
|
-
colors: {
|
60
|
-
primary: createPalete('primary'),
|
61
|
-
secondary: createPalete('secondary'),
|
62
|
-
success: createPalete('success'),
|
63
|
-
danger: createPalete('danger'),
|
64
|
-
warning: createPalete('warning'),
|
65
|
-
info: createPalete('info'),
|
66
|
-
neutral: createPalete('neutral'),
|
67
|
-
..._colors,
|
68
|
-
},
|
69
|
-
textColor: {
|
70
|
-
DEFAULT: withOpacityValue('--ax-color-text-default'),
|
71
|
-
default: withOpacityValue('--ax-color-text-default'),
|
72
|
-
..._colors,
|
73
|
-
},
|
74
|
-
backgroundColor: {
|
75
|
-
default: 'rgba(var(--ax-color-background-default), <alpha-value>)',
|
76
|
-
'border-default': 'rgba(var(--ax-color-border-default), <alpha-value>)',
|
77
|
-
},
|
78
|
-
|
79
|
-
borderColor: {
|
80
|
-
DEFAULT: 'rgba(var(--ax-color-border-default), <alpha-value>)',
|
81
|
-
default: 'rgba(var(--ax-color-border-default), <alpha-value>)',
|
82
|
-
..._colors,
|
83
|
-
},
|
84
|
-
maxWidth: {
|
85
|
-
'8xl': '90rem',
|
86
|
-
},
|
87
|
-
borderRadius: {
|
88
|
-
default: 'var(--ax-rounded-border-default)',
|
89
|
-
},
|
90
|
-
lineHeight: {
|
91
|
-
11: '2.5rem',
|
92
|
-
12: '3rem',
|
93
|
-
12: '3rem',
|
94
|
-
14: '3.5rem',
|
95
|
-
16: '4rem',
|
96
|
-
20: '5rem',
|
97
|
-
},
|
98
|
-
spacing: {
|
99
|
-
default: 'var(--ax-size-default)',
|
100
|
-
},
|
101
|
-
minWidth: {
|
102
|
-
default: 'var(--ax-size-default)',
|
103
|
-
},
|
104
|
-
width: {
|
105
|
-
default: 'var(--ax-size-default)',
|
106
|
-
},
|
107
|
-
maxHeight: {
|
108
|
-
default: 'var(--ax-size-default)',
|
109
|
-
},
|
110
|
-
minHeight: {
|
111
|
-
default: 'var(--ax-size-default)',
|
112
|
-
},
|
113
|
-
height: {
|
114
|
-
default: 'var(--ax-size-default)',
|
115
|
-
},
|
116
|
-
maxHeight: {
|
117
|
-
default: 'var(--ax-size-default)',
|
118
|
-
},
|
119
|
-
},
|
120
|
-
},
|
121
|
-
corePlugins: {
|
122
|
-
preflight: false,
|
123
|
-
},
|
124
|
-
plugins: [
|
125
|
-
plugin(function ({ addUtilities }) {
|
126
|
-
const acorexClasses = {
|
127
|
-
'.h1': {
|
128
|
-
'font-size': '3rem',
|
129
|
-
'font-weight': '700',
|
130
|
-
'line-height': '3rem',
|
131
|
-
},
|
132
|
-
'.h2': {
|
133
|
-
'font-size': '2.5rem',
|
134
|
-
'font-weight': '700',
|
135
|
-
'line-height': '2.5rem',
|
136
|
-
},
|
137
|
-
'.h3': {
|
138
|
-
'font-size': '1.875rem',
|
139
|
-
'font-weight': '700',
|
140
|
-
'line-height': '1.875rem',
|
141
|
-
},
|
142
|
-
'.h4': {
|
143
|
-
'font-size': '1.5rem',
|
144
|
-
'font-weight': '700',
|
145
|
-
'line-height': '1.5rem',
|
146
|
-
},
|
147
|
-
'.h5': {
|
148
|
-
'font-size': '1.25rem',
|
149
|
-
'font-weight': '700',
|
150
|
-
'line-height': '1.25rem',
|
151
|
-
},
|
152
|
-
'.h6': {
|
153
|
-
'font-size': '1.125rem',
|
154
|
-
'font-weight': '700',
|
155
|
-
'line-height': '1.125rem',
|
156
|
-
},
|
157
|
-
'.heading': {
|
158
|
-
width: '100%',
|
159
|
-
'border-bottom': '1px solid',
|
160
|
-
'border-color': 'rgba(var(--ax-color-border-default))',
|
161
|
-
'line-height': '0.1em',
|
162
|
-
margin: '1rem auto',
|
163
|
-
},
|
164
|
-
'.heading > span': {
|
165
|
-
background: 'rgba(var(--ax-color-surface))',
|
166
|
-
padding: '0 0.75rem',
|
167
|
-
},
|
168
|
-
'.heading-start': {
|
169
|
-
'text-align': 'start',
|
170
|
-
},
|
171
|
-
'.heading-center': {
|
172
|
-
'text-align': 'center',
|
173
|
-
},
|
174
|
-
'.heading-end': {
|
175
|
-
'text-align': 'end',
|
176
|
-
},
|
177
|
-
'.link': {
|
178
|
-
color: 'rgba(var(--ax-color-primary-500))',
|
179
|
-
cursor: 'pointer',
|
180
|
-
},
|
181
|
-
'.link:hover': {
|
182
|
-
'text-decoration': 'underline',
|
183
|
-
},
|
184
|
-
'.link:visited': {
|
185
|
-
color: 'rgba(var(--ax-color-primary-700))',
|
186
|
-
},
|
187
|
-
'.animate-slow': {
|
188
|
-
animationDuration: '2s',
|
189
|
-
},
|
190
|
-
'.animate-slower': {
|
191
|
-
animationDuration: '3s',
|
192
|
-
},
|
193
|
-
'.animate-2xslower': {
|
194
|
-
animationDuration: '5s',
|
195
|
-
},
|
196
|
-
'.animate-fast': {
|
197
|
-
animationDuration: '800ms',
|
198
|
-
},
|
199
|
-
'.animate-faster': {
|
200
|
-
animationDuration: '500ms',
|
201
|
-
},
|
202
|
-
'.animate-2xfaster': {
|
203
|
-
animationDuration: '250ms',
|
204
|
-
},
|
205
|
-
'.card': {
|
206
|
-
backgroundColor: 'rgb(var(--ax-color-surface))',
|
207
|
-
border: '1px solid',
|
208
|
-
borderColor: 'rgb(var(--ax-color-border-default))',
|
209
|
-
borderRadius: 'var(--ax-rounded-border-default)',
|
210
|
-
},
|
211
|
-
'.tabs-fit': {
|
212
|
-
width: '100%',
|
213
|
-
},
|
214
|
-
'.xs': {
|
215
|
-
'--ax-size-default': '2rem',
|
216
|
-
},
|
217
|
-
'.sm': {
|
218
|
-
'--ax-size-default': '2.25rem',
|
219
|
-
},
|
220
|
-
'.md': {
|
221
|
-
'--ax-size-default': '2.5rem',
|
222
|
-
},
|
223
|
-
'.lg': {
|
224
|
-
'--ax-size-default': '3rem',
|
225
|
-
},
|
226
|
-
'.xl': {
|
227
|
-
'--ax-size-default': '3.5rem',
|
228
|
-
},
|
229
|
-
};
|
230
|
-
addUtilities(acorexClasses, ['responsive', 'hover', 'focus']);
|
231
|
-
}),
|
232
|
-
childSelector,
|
233
|
-
],
|
234
|
-
});
|
1
|
+
const plugin = require('tailwindcss/plugin');
|
2
|
+
const { withAnimations } = require('animated-tailwindcss');
|
3
|
+
|
4
|
+
function withOpacityValue(variable) {
|
5
|
+
return ({ opacityValue }) => {
|
6
|
+
if (opacityValue === undefined) {
|
7
|
+
return `rgb(var(${variable}))`;
|
8
|
+
}
|
9
|
+
return `rgb(var(${variable}) ,${opacityValue})`;
|
10
|
+
};
|
11
|
+
}
|
12
|
+
|
13
|
+
const childSelector = plugin(function ({ addVariant }) {
|
14
|
+
addVariant('child', '& > *');
|
15
|
+
addVariant('child-hover', '& > *:hover');
|
16
|
+
addVariant('child-focus', '& > *:focus');
|
17
|
+
addVariant('child-focus-within', '& > *:focus-within');
|
18
|
+
});
|
19
|
+
|
20
|
+
const _colors = {
|
21
|
+
ghost: 'rgba(var(--ax-color-ghost), <alpha-value>)',
|
22
|
+
'ghost-fore': 'rgba(var(--ax-color-ghost-fore), <alpha-value>)',
|
23
|
+
|
24
|
+
surface: 'rgba(var(--ax-color-surface), <alpha-value>)',
|
25
|
+
'surface-fore': 'rgba(var(--ax-color-surface-fore), <alpha-value>)',
|
26
|
+
|
27
|
+
'on-surface': 'rgba(var(--ax-color-on-surface), <alpha-value>)',
|
28
|
+
'on-surface-fore': 'rgba(var(--ax-color-on-surface-fore), <alpha-value>)',
|
29
|
+
|
30
|
+
'input-surface': 'rgba(var(--ax-color-input-surface), <alpha-value>)',
|
31
|
+
'input-surface-fore': 'rgba(var(--ax-color-input-surface-fore), <alpha-value>)',
|
32
|
+
};
|
33
|
+
|
34
|
+
const createPalete = function (colorName) {
|
35
|
+
return {
|
36
|
+
DEFAULT: `rgba(var(--ax-color-${colorName}-500), <alpha-value>)`,
|
37
|
+
fore: `rgba(var(--ax-color-${colorName}-fore), <alpha-value>)`,
|
38
|
+
'fore-tint': `rgba(var(--ax-color-${colorName}-fore-tint), <alpha-value>)`,
|
39
|
+
50: `rgba(var(--ax-color-${colorName}-50), <alpha-value>)`,
|
40
|
+
100: `rgba(var(--ax-color-${colorName}-100), <alpha-value>)`,
|
41
|
+
200: `rgba(var(--ax-color-${colorName}-200), <alpha-value>)`,
|
42
|
+
300: `rgba(var(--ax-color-${colorName}-300), <alpha-value>)`,
|
43
|
+
400: `rgba(var(--ax-color-${colorName}-400), <alpha-value>)`,
|
44
|
+
500: `rgba(var(--ax-color-${colorName}-500), <alpha-value>)`,
|
45
|
+
600: `rgba(var(--ax-color-${colorName}-600), <alpha-value>)`,
|
46
|
+
700: `rgba(var(--ax-color-${colorName}-700), <alpha-value>)`,
|
47
|
+
800: `rgba(var(--ax-color-${colorName}-800), <alpha-value>)`,
|
48
|
+
900: `rgba(var(--ax-color-${colorName}-900), <alpha-value>)`,
|
49
|
+
950: `rgba(var(--ax-color-${colorName}-950), <alpha-value>)`,
|
50
|
+
};
|
51
|
+
};
|
52
|
+
|
53
|
+
module.exports = withAnimations({
|
54
|
+
prefix: 'ax-',
|
55
|
+
content: ['./src/**/*.{html,ts,scss}', './projects/**/*.{html,ts,scss}'],
|
56
|
+
darkMode: 'class',
|
57
|
+
theme: {
|
58
|
+
extend: {
|
59
|
+
colors: {
|
60
|
+
primary: createPalete('primary'),
|
61
|
+
secondary: createPalete('secondary'),
|
62
|
+
success: createPalete('success'),
|
63
|
+
danger: createPalete('danger'),
|
64
|
+
warning: createPalete('warning'),
|
65
|
+
info: createPalete('info'),
|
66
|
+
neutral: createPalete('neutral'),
|
67
|
+
..._colors,
|
68
|
+
},
|
69
|
+
textColor: {
|
70
|
+
DEFAULT: withOpacityValue('--ax-color-text-default'),
|
71
|
+
default: withOpacityValue('--ax-color-text-default'),
|
72
|
+
..._colors,
|
73
|
+
},
|
74
|
+
backgroundColor: {
|
75
|
+
default: 'rgba(var(--ax-color-background-default), <alpha-value>)',
|
76
|
+
'border-default': 'rgba(var(--ax-color-border-default), <alpha-value>)',
|
77
|
+
},
|
78
|
+
|
79
|
+
borderColor: {
|
80
|
+
DEFAULT: 'rgba(var(--ax-color-border-default), <alpha-value>)',
|
81
|
+
default: 'rgba(var(--ax-color-border-default), <alpha-value>)',
|
82
|
+
..._colors,
|
83
|
+
},
|
84
|
+
maxWidth: {
|
85
|
+
'8xl': '90rem',
|
86
|
+
},
|
87
|
+
borderRadius: {
|
88
|
+
default: 'var(--ax-rounded-border-default)',
|
89
|
+
},
|
90
|
+
lineHeight: {
|
91
|
+
11: '2.5rem',
|
92
|
+
12: '3rem',
|
93
|
+
12: '3rem',
|
94
|
+
14: '3.5rem',
|
95
|
+
16: '4rem',
|
96
|
+
20: '5rem',
|
97
|
+
},
|
98
|
+
spacing: {
|
99
|
+
default: 'var(--ax-size-default)',
|
100
|
+
},
|
101
|
+
minWidth: {
|
102
|
+
default: 'var(--ax-size-default)',
|
103
|
+
},
|
104
|
+
width: {
|
105
|
+
default: 'var(--ax-size-default)',
|
106
|
+
},
|
107
|
+
maxHeight: {
|
108
|
+
default: 'var(--ax-size-default)',
|
109
|
+
},
|
110
|
+
minHeight: {
|
111
|
+
default: 'var(--ax-size-default)',
|
112
|
+
},
|
113
|
+
height: {
|
114
|
+
default: 'var(--ax-size-default)',
|
115
|
+
},
|
116
|
+
maxHeight: {
|
117
|
+
default: 'var(--ax-size-default)',
|
118
|
+
},
|
119
|
+
},
|
120
|
+
},
|
121
|
+
corePlugins: {
|
122
|
+
preflight: false,
|
123
|
+
},
|
124
|
+
plugins: [
|
125
|
+
plugin(function ({ addUtilities }) {
|
126
|
+
const acorexClasses = {
|
127
|
+
'.h1': {
|
128
|
+
'font-size': '3rem',
|
129
|
+
'font-weight': '700',
|
130
|
+
'line-height': '3rem',
|
131
|
+
},
|
132
|
+
'.h2': {
|
133
|
+
'font-size': '2.5rem',
|
134
|
+
'font-weight': '700',
|
135
|
+
'line-height': '2.5rem',
|
136
|
+
},
|
137
|
+
'.h3': {
|
138
|
+
'font-size': '1.875rem',
|
139
|
+
'font-weight': '700',
|
140
|
+
'line-height': '1.875rem',
|
141
|
+
},
|
142
|
+
'.h4': {
|
143
|
+
'font-size': '1.5rem',
|
144
|
+
'font-weight': '700',
|
145
|
+
'line-height': '1.5rem',
|
146
|
+
},
|
147
|
+
'.h5': {
|
148
|
+
'font-size': '1.25rem',
|
149
|
+
'font-weight': '700',
|
150
|
+
'line-height': '1.25rem',
|
151
|
+
},
|
152
|
+
'.h6': {
|
153
|
+
'font-size': '1.125rem',
|
154
|
+
'font-weight': '700',
|
155
|
+
'line-height': '1.125rem',
|
156
|
+
},
|
157
|
+
'.heading': {
|
158
|
+
width: '100%',
|
159
|
+
'border-bottom': '1px solid',
|
160
|
+
'border-color': 'rgba(var(--ax-color-border-default))',
|
161
|
+
'line-height': '0.1em',
|
162
|
+
margin: '1rem auto',
|
163
|
+
},
|
164
|
+
'.heading > span': {
|
165
|
+
background: 'rgba(var(--ax-color-surface))',
|
166
|
+
padding: '0 0.75rem',
|
167
|
+
},
|
168
|
+
'.heading-start': {
|
169
|
+
'text-align': 'start',
|
170
|
+
},
|
171
|
+
'.heading-center': {
|
172
|
+
'text-align': 'center',
|
173
|
+
},
|
174
|
+
'.heading-end': {
|
175
|
+
'text-align': 'end',
|
176
|
+
},
|
177
|
+
'.link': {
|
178
|
+
color: 'rgba(var(--ax-color-primary-500))',
|
179
|
+
cursor: 'pointer',
|
180
|
+
},
|
181
|
+
'.link:hover': {
|
182
|
+
'text-decoration': 'underline',
|
183
|
+
},
|
184
|
+
'.link:visited': {
|
185
|
+
color: 'rgba(var(--ax-color-primary-700))',
|
186
|
+
},
|
187
|
+
'.animate-slow': {
|
188
|
+
animationDuration: '2s',
|
189
|
+
},
|
190
|
+
'.animate-slower': {
|
191
|
+
animationDuration: '3s',
|
192
|
+
},
|
193
|
+
'.animate-2xslower': {
|
194
|
+
animationDuration: '5s',
|
195
|
+
},
|
196
|
+
'.animate-fast': {
|
197
|
+
animationDuration: '800ms',
|
198
|
+
},
|
199
|
+
'.animate-faster': {
|
200
|
+
animationDuration: '500ms',
|
201
|
+
},
|
202
|
+
'.animate-2xfaster': {
|
203
|
+
animationDuration: '250ms',
|
204
|
+
},
|
205
|
+
'.card': {
|
206
|
+
backgroundColor: 'rgb(var(--ax-color-surface))',
|
207
|
+
border: '1px solid',
|
208
|
+
borderColor: 'rgb(var(--ax-color-border-default))',
|
209
|
+
borderRadius: 'var(--ax-rounded-border-default)',
|
210
|
+
},
|
211
|
+
'.tabs-fit': {
|
212
|
+
width: '100%',
|
213
|
+
},
|
214
|
+
'.xs': {
|
215
|
+
'--ax-size-default': '2rem',
|
216
|
+
},
|
217
|
+
'.sm': {
|
218
|
+
'--ax-size-default': '2.25rem',
|
219
|
+
},
|
220
|
+
'.md': {
|
221
|
+
'--ax-size-default': '2.5rem',
|
222
|
+
},
|
223
|
+
'.lg': {
|
224
|
+
'--ax-size-default': '3rem',
|
225
|
+
},
|
226
|
+
'.xl': {
|
227
|
+
'--ax-size-default': '3.5rem',
|
228
|
+
},
|
229
|
+
};
|
230
|
+
addUtilities(acorexClasses, ['responsive', 'hover', 'focus']);
|
231
|
+
}),
|
232
|
+
childSelector,
|
233
|
+
],
|
234
|
+
});
|
@@ -0,0 +1 @@
|
|
1
|
+
:root,.ax-light{--ax-size-base: 2.5rem;--ax-size-default: var(--ax-size-base);--ax-icon-weight: 400;--ax-icon-size: 100%;--ax-rounded-border-default: 0.5rem;--ax-color-border-default: 209, 213, 219;--ax-color-background-default: 249, 250, 251;--ax-color-text-default: 22, 22, 22;--ax-color-surface: 255, 255, 255;--ax-color-surface-fore: 22, 22, 22;--ax-color-on-surface: 240, 240, 241;--ax-color-on-surface-fore: 22, 22, 22;--ax-color-input-surface: 255, 255, 255;--ax-color-input-surface-fore: 22, 22, 22;--ax-color-ghost: 255, 255, 255;--ax-color-ghost-fore: 22, 22, 22;--ax-color-primary-fore: 255, 255, 255;--ax-color-primary-fore-tint: 11, 30, 71;--ax-color-primary-50: 244, 247, 254;--ax-color-primary-100: 233, 239, 253;--ax-color-primary-200: 190, 208, 249;--ax-color-primary-300: 146, 177, 245;--ax-color-primary-400: 102, 146, 241;--ax-color-primary-500: 37, 99, 235;--ax-color-primary-600: 33, 89, 212;--ax-color-primary-700: 26, 69, 165;--ax-color-primary-800: 19, 50, 118;--ax-color-primary-900: 11, 30, 71;--ax-color-primary-950: 4, 10, 23;--ax-color-secondary-fore: 255, 255, 255;--ax-color-secondary-fore-tint: 9, 12, 18;--ax-color-secondary-50: 244, 244, 245;--ax-color-secondary-100: 233, 234, 235;--ax-color-secondary-200: 188, 191, 196;--ax-color-secondary-300: 143, 148, 157;--ax-color-secondary-400: 98, 105, 118;--ax-color-secondary-500: 30, 41, 59;--ax-color-secondary-600: 27, 37, 53;--ax-color-secondary-700: 21, 29, 41;--ax-color-secondary-800: 15, 21, 30;--ax-color-secondary-900: 9, 12, 18;--ax-color-secondary-950: 3, 4, 6;--ax-color-success-fore: 255, 255, 255;--ax-color-success-fore-tint: 6, 78, 59;--ax-color-success-50: 236, 253, 245;--ax-color-success-100: 209, 250, 229;--ax-color-success-200: 167, 243, 208;--ax-color-success-300: 110, 231, 183;--ax-color-success-400: 52, 211, 153;--ax-color-success-500: 16, 185, 129;--ax-color-success-600: 5, 150, 105;--ax-color-success-700: 4, 120, 87;--ax-color-success-800: 6, 95, 70;--ax-color-success-900: 6, 78, 59;--ax-color-success-950: 2, 44, 34;--ax-color-warning-fore: 48, 26, 10;--ax-color-warning-fore-tint: 255, 111, 0;--ax-color-warning-50: 255, 248, 225;--ax-color-warning-100: 255, 236, 179;--ax-color-warning-200: 255, 224, 130;--ax-color-warning-300: 255, 213, 79;--ax-color-warning-400: 255, 202, 40;--ax-color-warning-500: 255, 193, 7;--ax-color-warning-600: 255, 179, 0;--ax-color-warning-700: 255, 160, 0;--ax-color-warning-800: 255, 143, 0;--ax-color-warning-900: 255, 111, 0;--ax-color-warning-950: 72, 40, 15;--ax-color-danger-fore: 255, 255, 255;--ax-color-danger-fore-tint: 127, 29, 29;--ax-color-danger-50: 254, 242, 242;--ax-color-danger-100: 254, 226, 226;--ax-color-danger-200: 254, 202, 202;--ax-color-danger-300: 252, 165, 165;--ax-color-danger-400: 248, 113, 113;--ax-color-danger-500: 239, 68, 68;--ax-color-danger-600: 220, 38, 38;--ax-color-danger-700: 185, 28, 28;--ax-color-danger-800: 153, 27, 27;--ax-color-danger-900: 127, 29, 29;--ax-color-danger-950: 69, 10, 10;--ax-color-info-fore: 255, 255, 255;--ax-color-info-fore-tint: 49, 46, 129;--ax-color-info-50: 238, 242, 255;--ax-color-info-100: 224, 231, 255;--ax-color-info-200: 199, 210, 254;--ax-color-info-300: 165, 180, 252;--ax-color-info-400: 129, 140, 248;--ax-color-info-500: 99, 102, 241;--ax-color-info-600: 79, 70, 229;--ax-color-info-700: 67, 56, 202;--ax-color-info-800: 55, 48, 163;--ax-color-info-900: 49, 46, 129;--ax-color-info-950: 30, 27, 75;--ax-color-neutral-fore: 255, 255, 255;--ax-color-neutral-fore-tint: 17, 24, 39;--ax-color-neutral-50: 249, 250, 251;--ax-color-neutral-100: 243, 244, 246;--ax-color-neutral-200: 229, 231, 235;--ax-color-neutral-300: 209, 213, 219;--ax-color-neutral-400: 156, 163, 175;--ax-color-neutral-500: 107, 114, 128;--ax-color-neutral-600: 75, 85, 99;--ax-color-neutral-700: 55, 65, 81;--ax-color-neutral-800: 31, 41, 55;--ax-color-neutral-900: 17, 24, 39;--ax-color-neutral-950: 3, 7, 18}.ax-dark{--ax-color-border-default: 75, 85, 99;--ax-color-background-default: 24, 32, 43;--ax-color-text-default: 255, 255, 255;--ax-color-surface: 31, 41, 55;--ax-color-surface-fore: 255, 255, 255;--ax-color-on-surface: 55, 65, 81;--ax-color-on-surface-fore: 255, 255, 255;--ax-color-input-surface: 38, 45, 57;--ax-color-input-surface-fore: 224, 224, 224;--ax-color-ghost: 77, 91, 113;--ax-color-ghost-fore: 255, 255, 255}
|