@acorex/styles 7.1.38 → 7.1.40
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/package.json +1 -1
- package/src/themes/default.scss +2 -2
- package/tailwind-base.js +19 -3
package/package.json
CHANGED
package/src/themes/default.scss
CHANGED
@@ -11,8 +11,8 @@
|
|
11
11
|
--ax-color-surface: 255, 255, 255;
|
12
12
|
--ax-color-default-fore: 22, 22, 22;
|
13
13
|
|
14
|
-
--ax-color-
|
15
|
-
--ax-color-
|
14
|
+
--ax-color-on-surface: 237, 239, 242;
|
15
|
+
--ax-color-on-surface-fore: 22, 22, 22;
|
16
16
|
|
17
17
|
--ax-color-input-surface: 255, 255, 255;
|
18
18
|
--ax-color-input-surface-fore: 22, 22, 22;
|
package/tailwind-base.js
CHANGED
@@ -101,8 +101,9 @@ module.exports = withAnimations({
|
|
101
101
|
textColor: {
|
102
102
|
DEFAULT: withOpacityValue('--ax-color-text-default'),
|
103
103
|
default: withOpacityValue('--ax-color-text-default'),
|
104
|
-
'surface-fore': withOpacityValue('--ax-color-
|
105
|
-
'on-surface-fore': withOpacityValue('--ax-color-
|
104
|
+
'surface-fore': withOpacityValue('--ax-color-surface-fore'),
|
105
|
+
'on-surface-fore': withOpacityValue('--ax-color-on-surface-fore'),
|
106
|
+
'input-surface-fore': withOpacityValue('--ax-color-input-surface-fore'),
|
106
107
|
'primary-fore': withOpacityValue('--ax-color-primary-fore'),
|
107
108
|
'secondary-fore': withOpacityValue('--ax-color-secondary-fore'),
|
108
109
|
'success-fore': withOpacityValue('--ax-color-success-fore'),
|
@@ -115,11 +116,26 @@ module.exports = withAnimations({
|
|
115
116
|
'success-fore': withOpacityValue('--ax-color-success-fore'),
|
116
117
|
'warning-fore': withOpacityValue('--ax-color-warning-fore'),
|
117
118
|
'danger-fore': withOpacityValue('--ax-color-danger-fore'),
|
119
|
+
surface: withOpacityValue('--ax-color-surface'),
|
120
|
+
'on-surface': withOpacityValue('--ax-color-on-surface'),
|
121
|
+
'input-surface': withOpacityValue('--ax-color-input-surface'),
|
118
122
|
},
|
123
|
+
stroke: {
|
124
|
+
'primary-fore': withOpacityValue('--ax-color-primary-fore'),
|
125
|
+
'secondary-fore': withOpacityValue('--ax-color-secondary-fore'),
|
126
|
+
'success-fore': withOpacityValue('--ax-color-success-fore'),
|
127
|
+
'warning-fore': withOpacityValue('--ax-color-warning-fore'),
|
128
|
+
'danger-fore': withOpacityValue('--ax-color-danger-fore'),
|
129
|
+
surface: withOpacityValue('--ax-color-surface'),
|
130
|
+
'on-surface': withOpacityValue('--ax-color-on-surface'),
|
131
|
+
'input-surface': withOpacityValue('--ax-color-input-surface'),
|
132
|
+
},
|
133
|
+
|
119
134
|
backgroundColor: {
|
120
135
|
default: withOpacityValue('--ax-color-background-default'),
|
121
136
|
surface: withOpacityValue('--ax-color-surface'),
|
122
|
-
'on-surface': withOpacityValue('--ax-color-
|
137
|
+
'on-surface': withOpacityValue('--ax-color-on-surface'),
|
138
|
+
'input-surface': withOpacityValue('--ax-color-input-surface'),
|
123
139
|
},
|
124
140
|
borderColor: {
|
125
141
|
DEFAULT: 'rgba(var(--ax-color-border-default))',
|