imbric-theme 0.6.7 → 0.6.9
Sign up to get free protection for your applications and to get access to all the features.
- package/.storybook/preview.js +3 -0
- package/atoms/Button/Button.module.css +2 -1
- package/atoms/Input/Input.js +16 -0
- package/atoms/Input/Input.module.css +7 -1
- package/molecules/DynamicSelect/DynamicSelect.js +3 -1
- package/molecules/RowTable/RowTable.js +3 -2
- package/package.json +1 -1
- package/styles/default.css +391 -0
package/.storybook/preview.js
CHANGED
@@ -7,6 +7,8 @@ import '../styles/GrupoMutua.css'
|
|
7
7
|
import '../styles/taxisvalencia.css'
|
8
8
|
import '../styles/radiotaxiaragon.css'
|
9
9
|
import '../styles/spartan.css'
|
10
|
+
import '../styles/default.css'
|
11
|
+
|
10
12
|
|
11
13
|
const getStyles = ({ __sb } = {}) => ({
|
12
14
|
display: 'flex',
|
@@ -39,6 +41,7 @@ export const globalTypes = {
|
|
39
41
|
themes: {
|
40
42
|
defaultValue: [
|
41
43
|
"Imbric",
|
44
|
+
"Default",
|
42
45
|
"GrupoMutua",
|
43
46
|
"Taxisvalencia",
|
44
47
|
"Radiotaxiaragon",
|
package/atoms/Input/Input.js
CHANGED
@@ -26,6 +26,9 @@ export const Input = ({
|
|
26
26
|
onBlur,
|
27
27
|
onClick,
|
28
28
|
onKeyDown,
|
29
|
+
onKeyUp,
|
30
|
+
onInput,
|
31
|
+
maxLength,
|
29
32
|
placeholder,
|
30
33
|
autoComplete,
|
31
34
|
disabled,
|
@@ -39,6 +42,7 @@ export const Input = ({
|
|
39
42
|
onClickViewPass,
|
40
43
|
viewPass,
|
41
44
|
min,
|
45
|
+
autoFocus,
|
42
46
|
}) => (
|
43
47
|
|
44
48
|
<>
|
@@ -73,6 +77,8 @@ export const Input = ({
|
|
73
77
|
onBlur={onBlur}
|
74
78
|
onClick={onClick}
|
75
79
|
onKeyDown={onKeyDown}
|
80
|
+
onKeyUp={onKeyUp}
|
81
|
+
onInput={onInput}
|
76
82
|
autoComplete={autoComplete}
|
77
83
|
disabled={disabled}
|
78
84
|
min={min}
|
@@ -105,6 +111,7 @@ export const Input = ({
|
|
105
111
|
autoComplete={autoComplete}
|
106
112
|
disabled={disabled}
|
107
113
|
min={min}
|
114
|
+
onInput={onInput}
|
108
115
|
></input>
|
109
116
|
|
110
117
|
<Horizontal size="xs" />
|
@@ -139,9 +146,12 @@ export const Input = ({
|
|
139
146
|
onBlur={onBlur}
|
140
147
|
onClick={onClick}
|
141
148
|
onKeyDown={onKeyDown}
|
149
|
+
maxLength={maxLength}
|
142
150
|
autoComplete={autoComplete}
|
143
151
|
disabled={disabled}
|
144
152
|
min={min}
|
153
|
+
autoFocus={autoFocus}
|
154
|
+
onInput={onInput}
|
145
155
|
></input>
|
146
156
|
|
147
157
|
}
|
@@ -155,6 +165,9 @@ Input.propTypes = {
|
|
155
165
|
onBlur: PropTypes.func,
|
156
166
|
onClick: PropTypes.func,
|
157
167
|
onKeyDown: PropTypes.func,
|
168
|
+
onKeyUp: PropTypes.func,
|
169
|
+
onInput: PropTypes.func,
|
170
|
+
maxLength: PropTypes.number,
|
158
171
|
getStyles: PropTypes.func.isRequired,
|
159
172
|
type: PropTypes.oneOf(options.types),
|
160
173
|
id: PropTypes.string.isRequired,
|
@@ -173,6 +186,7 @@ Input.propTypes = {
|
|
173
186
|
autoComplete: PropTypes.string,
|
174
187
|
disabled: PropTypes.bool,
|
175
188
|
min: PropTypes.any,
|
189
|
+
autoFocus: PropTypes.any,
|
176
190
|
onClickViewPass: PropTypes.func,
|
177
191
|
viewPass: PropTypes.bool,
|
178
192
|
}
|
@@ -191,6 +205,8 @@ Input.defaultProps = {
|
|
191
205
|
onBlur: () => { },
|
192
206
|
onClick: () => { },
|
193
207
|
onKeyDown: () => { },
|
208
|
+
onKeyUp: () => { },
|
209
|
+
onInput: () => { },
|
194
210
|
getStyles: () => { },
|
195
211
|
isViewIcon: false,
|
196
212
|
idIcon: 'Ejemplo',
|
@@ -23,6 +23,11 @@
|
|
23
23
|
outline: none;
|
24
24
|
}
|
25
25
|
|
26
|
+
.input:disabled::placeholder {
|
27
|
+
color: #9a9a9a;
|
28
|
+
font-weight: var(--font-weight-light);
|
29
|
+
}
|
30
|
+
|
26
31
|
.input:disabled {
|
27
32
|
background: #dedede;
|
28
33
|
}
|
@@ -33,7 +38,8 @@
|
|
33
38
|
|
34
39
|
[data-theme="Taxisvalencia"] .input,
|
35
40
|
[data-theme="Radiotaxiaragon"] .input,
|
36
|
-
[data-theme="Spartan"] .input
|
41
|
+
[data-theme="Spartan"] .input,
|
42
|
+
[data-theme="Default"] .input {
|
37
43
|
border-radius: var(--button-border-radius-sm);
|
38
44
|
}
|
39
45
|
|
@@ -5,7 +5,7 @@ import styles from './DynamicSelect.module.css'
|
|
5
5
|
import withStyles from '../../hocs/withStyles'
|
6
6
|
|
7
7
|
|
8
|
-
export const DynamicSelect = ({ getStyles, optionsSelect, defaultValue, placeholder, isMulti, isClearable, isDisabled, isLoading, isRtl, isSearchable, isInline, onChange, onFocus, onBlur, closeMenuOnSelect }) => {
|
8
|
+
export const DynamicSelect = ({ getStyles, optionsSelect, value, defaultValue, placeholder, isMulti, isClearable, isDisabled, isLoading, isRtl, isSearchable, isInline, onChange, onFocus, onBlur, closeMenuOnSelect }) => {
|
9
9
|
|
10
10
|
|
11
11
|
const customStyles = {
|
@@ -74,6 +74,7 @@ export const DynamicSelect = ({ getStyles, optionsSelect, defaultValue, placehol
|
|
74
74
|
styles={customStyles}
|
75
75
|
options={optionsSelect}
|
76
76
|
defaultValue={defaultValue}
|
77
|
+
value={value}
|
77
78
|
isMulti={isMulti}
|
78
79
|
isClearable={isClearable}
|
79
80
|
isDisabled={isDisabled}
|
@@ -93,6 +94,7 @@ export const DynamicSelect = ({ getStyles, optionsSelect, defaultValue, placehol
|
|
93
94
|
DynamicSelect.propTypes = {
|
94
95
|
getStyles: PropTypes.func.isRequired,
|
95
96
|
defaultValue: PropTypes.any,
|
97
|
+
value: PropTypes.any,
|
96
98
|
placeholder: PropTypes.string,
|
97
99
|
isMulti: PropTypes.bool,
|
98
100
|
isClearable: PropTypes.bool,
|
@@ -38,6 +38,7 @@ export const RowTable = ({
|
|
38
38
|
txtTootipIconSendEmail,
|
39
39
|
txtTootipIconDelete,
|
40
40
|
txtTootipIconLink,
|
41
|
+
colorRow,
|
41
42
|
}) => {
|
42
43
|
|
43
44
|
|
@@ -102,7 +103,7 @@ export const RowTable = ({
|
|
102
103
|
<tbody>
|
103
104
|
{slice.map((item, index) => (
|
104
105
|
|
105
|
-
<tr className={getStyles({ 'tr-content': isClickRow })} onClick={(e) => { onClickRow(e, item) }} key={index}>
|
106
|
+
<tr style={{ background: item.colorRow }} className={getStyles({ 'tr-content': isClickRow })} onClick={(e) => { onClickRow(e, item) }} key={index}>
|
106
107
|
|
107
108
|
{columnsData.map((itemTd, indexTd) => (
|
108
109
|
itemTd.activeView ?
|
@@ -793,7 +794,7 @@ RowTable.propTypes = {
|
|
793
794
|
txtTootipIconSendEmail: PropTypes.string,
|
794
795
|
txtTootipIconDelete: PropTypes.string,
|
795
796
|
txtTootipIconLink: PropTypes.string,
|
796
|
-
|
797
|
+
colorRow: PropTypes.string,
|
797
798
|
isCheckedCheckbox: PropTypes.bool
|
798
799
|
}
|
799
800
|
|
package/package.json
CHANGED
@@ -0,0 +1,391 @@
|
|
1
|
+
[data-theme="Default"] {
|
2
|
+
--color-brand-smalt: #02338D;
|
3
|
+
--color-brand-prussian-blue: #00205b;
|
4
|
+
--color-brand-blue-moon: #eff1fd;
|
5
|
+
--color-brand-burnt-sienna: #eb2d52;
|
6
|
+
--color-brand-mandy: #ed495e;
|
7
|
+
--color-brand-east-bay: #455970;
|
8
|
+
--color-brand-regent-gray: #7e858c;
|
9
|
+
--color-brand-loblolly: #b7b7b7;
|
10
|
+
--color-brand-white-lilac: #e8e8e8;
|
11
|
+
--color-brand-hint-of-red: #f9f9f9;
|
12
|
+
--color-brand-romance: #fcfdfd;
|
13
|
+
--color-brand-chateau-green: #39b54a;
|
14
|
+
--color-brand-shadow: #908154;
|
15
|
+
--color-brand-eastern-blue: #1daca3;
|
16
|
+
--color-brand-azure-radiance: #00a3ff;
|
17
|
+
|
18
|
+
--color-base-black: #000;
|
19
|
+
--color-base-white: #fff;
|
20
|
+
--color-base-transparent: transparent;
|
21
|
+
|
22
|
+
--color-rose-50: #fff1f2;
|
23
|
+
--color-rose-100: #ffe4e6;
|
24
|
+
--color-rose-200: #fecdd3;
|
25
|
+
--color-rose-300: #fda4af;
|
26
|
+
--color-rose-400: #fb7185;
|
27
|
+
--color-rose-500: #f43f5e;
|
28
|
+
--color-rose-600: #e11d48;
|
29
|
+
--color-rose-700: #be123c;
|
30
|
+
--color-rose-800: #9f1239;
|
31
|
+
--color-rose-900: #881337;
|
32
|
+
|
33
|
+
--color-pink-50: #fdf2f8;
|
34
|
+
--color-pink-100: #fce7f3;
|
35
|
+
--color-pink-200: #fbcfe8;
|
36
|
+
--color-pink-300: #f9a8d4;
|
37
|
+
--color-pink-400: #f472b6;
|
38
|
+
--color-pink-500: #ec4899;
|
39
|
+
--color-pink-600: #db2777;
|
40
|
+
--color-pink-700: #be185d;
|
41
|
+
--color-pink-800: #9d174d;
|
42
|
+
--color-pink-900: #831843;
|
43
|
+
|
44
|
+
--color-fuchsia-50: #fdf4ff;
|
45
|
+
--color-fuchsia-100: #fae8ff;
|
46
|
+
--color-fuchsia-200: #f5d0fe;
|
47
|
+
--color-fuchsia-300: #f0abfc;
|
48
|
+
--color-fuchsia-400: #e879f9;
|
49
|
+
--color-fuchsia-500: #d946ef;
|
50
|
+
--color-fuchsia-600: #c026d3;
|
51
|
+
--color-fuchsia-700: #a21caf;
|
52
|
+
--color-fuchsia-800: #86198f;
|
53
|
+
--color-fuchsia-900: #701a75;
|
54
|
+
|
55
|
+
--color-purple-50: #faf5ff;
|
56
|
+
--color-purple-100: #f3e8ff;
|
57
|
+
--color-purple-200: #e9d5ff;
|
58
|
+
--color-purple-300: #d8b4fe;
|
59
|
+
--color-purple-400: #c084fc;
|
60
|
+
--color-purple-500: #a855f7;
|
61
|
+
--color-purple-600: #9333ea;
|
62
|
+
--color-purple-700: #7e22ce;
|
63
|
+
--color-purple-800: #6b21a8;
|
64
|
+
--color-purple-900: #581c87;
|
65
|
+
|
66
|
+
--color-violet-50: #f5f3ff;
|
67
|
+
--color-violet-100: #ede9fe;
|
68
|
+
--color-violet-200: #ddd6fe;
|
69
|
+
--color-violet-300: #c4b5fd;
|
70
|
+
--color-violet-400: #a78bfa;
|
71
|
+
--color-violet-500: #8b5cf6;
|
72
|
+
--color-violet-600: #7c3aed;
|
73
|
+
--color-violet-700: #6d28d9;
|
74
|
+
--color-violet-800: #5b21b6;
|
75
|
+
--color-violet-900: #4c1d95;
|
76
|
+
|
77
|
+
--color-indigo-50: #eef2ff;
|
78
|
+
--color-indigo-100: #e0e7ff;
|
79
|
+
--color-indigo-200: #c7d2fe;
|
80
|
+
--color-indigo-300: #a5b4fc;
|
81
|
+
--color-indigo-400: #818cf8;
|
82
|
+
--color-indigo-500: #6366f1;
|
83
|
+
--color-indigo-600: #4f46e5;
|
84
|
+
--color-indigo-700: #4338ca;
|
85
|
+
--color-indigo-800: #3730a3;
|
86
|
+
--color-indigo-900: #312e81;
|
87
|
+
|
88
|
+
--color-blue-50: #eff6ff;
|
89
|
+
--color-blue-100: #dbeafe;
|
90
|
+
--color-blue-200: #bfdbfe;
|
91
|
+
--color-blue-300: #93c5fd;
|
92
|
+
--color-blue-400: #60a5fa;
|
93
|
+
--color-blue-500: #3b82f6;
|
94
|
+
--color-blue-600: #2563eb;
|
95
|
+
--color-blue-700: #1d4ed8;
|
96
|
+
--color-blue-800: #1e40af;
|
97
|
+
--color-blue-900: #1e3a8a;
|
98
|
+
|
99
|
+
--color-sky-50: #f0f9ff;
|
100
|
+
--color-sky-100: #e0f2fe;
|
101
|
+
--color-sky-200: #bae6fd;
|
102
|
+
--color-sky-300: #7dd3fc;
|
103
|
+
--color-sky-400: #38bdf8;
|
104
|
+
--color-sky-500: #0ea5e9;
|
105
|
+
--color-sky-600: #0284c7;
|
106
|
+
--color-sky-700: #0369a1;
|
107
|
+
--color-sky-800: #075985;
|
108
|
+
--color-sky-900: #0c4a6e;
|
109
|
+
|
110
|
+
--color-cyan-50: #ecfeff;
|
111
|
+
--color-cyan-100: #cffafe;
|
112
|
+
--color-cyan-200: #a5f3fc;
|
113
|
+
--color-cyan-300: #67e8f9;
|
114
|
+
--color-cyan-400: #22d3ee;
|
115
|
+
--color-cyan-500: #06b6d4;
|
116
|
+
--color-cyan-600: #0891b2;
|
117
|
+
--color-cyan-700: #0e7490;
|
118
|
+
--color-cyan-800: #155e75;
|
119
|
+
--color-cyan-900: #164e63;
|
120
|
+
|
121
|
+
--color-teal-50: #f0fdfa;
|
122
|
+
--color-teal-100: #ccfbf1;
|
123
|
+
--color-teal-200: #99f6e4;
|
124
|
+
--color-teal-300: #5eead4;
|
125
|
+
--color-teal-400: #2dd4bf;
|
126
|
+
--color-teal-500: #14b8a6;
|
127
|
+
--color-teal-600: #0d9488;
|
128
|
+
--color-teal-700: #0f766e;
|
129
|
+
--color-teal-800: #115e59;
|
130
|
+
--color-teal-900: #134e4a;
|
131
|
+
|
132
|
+
--color-emerald-50: #ecfdf5;
|
133
|
+
--color-emerald-100: #d1fae5;
|
134
|
+
--color-emerald-200: #a7f3d0;
|
135
|
+
--color-emerald-300: #6ee7b7;
|
136
|
+
--color-emerald-400: #34d399;
|
137
|
+
--color-emerald-500: #10b981;
|
138
|
+
--color-emerald-600: #059669;
|
139
|
+
--color-emerald-700: #047857;
|
140
|
+
--color-emerald-800: #065f46;
|
141
|
+
--color-emerald-900: #064e3b;
|
142
|
+
|
143
|
+
--color-green-50: #f0fdf4;
|
144
|
+
--color-green-100: #dcfce7;
|
145
|
+
--color-green-200: #bbf7d0;
|
146
|
+
--color-green-300: #86efac;
|
147
|
+
--color-green-400: #4ade80;
|
148
|
+
--color-green-500: #22c55e;
|
149
|
+
--color-green-600: #16a34a;
|
150
|
+
--color-green-700: #15803d;
|
151
|
+
--color-green-800: #166534;
|
152
|
+
--color-green-900: #14532d;
|
153
|
+
|
154
|
+
--color-lime-50: #f7fee7;
|
155
|
+
--color-lime-100: #ecfccb;
|
156
|
+
--color-lime-200: #d9f99d;
|
157
|
+
--color-lime-300: #bef264;
|
158
|
+
--color-lime-400: #a3e635;
|
159
|
+
--color-lime-500: #84cc16;
|
160
|
+
--color-lime-600: #65a30d;
|
161
|
+
--color-lime-700: #4d7c0f;
|
162
|
+
--color-lime-800: #3f6212;
|
163
|
+
--color-lime-900: #365314;
|
164
|
+
|
165
|
+
--color-yellow-50: #fefce8;
|
166
|
+
--color-yellow-100: #fef9c3;
|
167
|
+
--color-yellow-200: #fef08a;
|
168
|
+
--color-yellow-300: #fde047;
|
169
|
+
--color-yellow-400: #facc15;
|
170
|
+
--color-yellow-500: #eab308;
|
171
|
+
--color-yellow-600: #ca8a04;
|
172
|
+
--color-yellow-700: #a16207;
|
173
|
+
--color-yellow-800: #854d0e;
|
174
|
+
--color-yellow-900: #713f12;
|
175
|
+
|
176
|
+
--color-amber-50: #fffbeb;
|
177
|
+
--color-amber-100: #fef3c7;
|
178
|
+
--color-amber-200: #fde68a;
|
179
|
+
--color-amber-300: #fcd34d;
|
180
|
+
--color-amber-400: #fbbf24;
|
181
|
+
--color-amber-500: #f59e0b;
|
182
|
+
--color-amber-600: #d97706;
|
183
|
+
--color-amber-700: #b45309;
|
184
|
+
--color-amber-800: #92400e;
|
185
|
+
--color-amber-900: #78350f;
|
186
|
+
|
187
|
+
--color-orange-50: #fff7ed;
|
188
|
+
--color-orange-100: #ffedd5;
|
189
|
+
--color-orange-200: #fed7aa;
|
190
|
+
--color-orange-300: #fdba74;
|
191
|
+
--color-orange-400: #fb923c;
|
192
|
+
--color-orange-500: #f97316;
|
193
|
+
--color-orange-600: #ea580c;
|
194
|
+
--color-orange-700: #c2410c;
|
195
|
+
--color-orange-800: #9a3412;
|
196
|
+
--color-orange-900: #7c2d12;
|
197
|
+
|
198
|
+
--color-red-50: #fef2f2;
|
199
|
+
--color-red-100: #fee2e2;
|
200
|
+
--color-red-200: #fecaca;
|
201
|
+
--color-red-300: #fca5a5;
|
202
|
+
--color-red-400: #f87171;
|
203
|
+
--color-red-500: #ef4444;
|
204
|
+
--color-red-600: #dc2626;
|
205
|
+
--color-red-700: #b91c1c;
|
206
|
+
--color-red-800: #991b1b;
|
207
|
+
--color-red-900: #7f1d1d;
|
208
|
+
|
209
|
+
--color-warm-gray-50: #fafaf9;
|
210
|
+
--color-warm-gray-100: #f5f5f4;
|
211
|
+
--color-warm-gray-200: #e7e5e4;
|
212
|
+
--color-warm-gray-300: #d6d3d1;
|
213
|
+
--color-warm-gray-400: #a8a29e;
|
214
|
+
--color-warm-gray-500: #78716c;
|
215
|
+
--color-warm-gray-600: #57534e;
|
216
|
+
--color-warm-gray-700: #44403c;
|
217
|
+
--color-warm-gray-800: #292524;
|
218
|
+
--color-warm-gray-900: #1c1917;
|
219
|
+
|
220
|
+
--color-true-gray-50: #fafafa;
|
221
|
+
--color-true-gray-100: #f5f5f5;
|
222
|
+
--color-true-gray-200: #e5e5e5;
|
223
|
+
--color-true-gray-300: #d4d4d4;
|
224
|
+
--color-true-gray-400: #a3a3a3;
|
225
|
+
--color-true-gray-500: #737373;
|
226
|
+
--color-true-gray-600: #525252;
|
227
|
+
--color-true-gray-700: #404040;
|
228
|
+
--color-true-gray-800: #262626;
|
229
|
+
--color-true-gray-900: #171717;
|
230
|
+
|
231
|
+
--color-gray-50: #fafafa;
|
232
|
+
--color-gray-100: #f4f4f5;
|
233
|
+
--color-gray-200: #e4e4e7;
|
234
|
+
--color-gray-300: #d4d4d8;
|
235
|
+
--color-gray-400: #a1a1aa;
|
236
|
+
--color-gray-500: #71717a;
|
237
|
+
--color-gray-600: #52525b;
|
238
|
+
--color-gray-700: #3f3f46;
|
239
|
+
--color-gray-800: #27272a;
|
240
|
+
--color-gray-900: #18181b;
|
241
|
+
|
242
|
+
--color-cool-gray-50: #f9fafb;
|
243
|
+
--color-cool-gray-100: #f3f4f6;
|
244
|
+
--color-cool-gray-200: #e5e7eb;
|
245
|
+
--color-cool-gray-300: #d1d5db;
|
246
|
+
--color-cool-gray-400: #9ca3af;
|
247
|
+
--color-cool-gray-500: #6b7280;
|
248
|
+
--color-cool-gray-600: #4b5563;
|
249
|
+
--color-cool-gray-700: #374151;
|
250
|
+
--color-cool-gray-800: #1f2937;
|
251
|
+
--color-cool-gray-900: #111827;
|
252
|
+
|
253
|
+
--color-blue-gray-50: #f8fafc;
|
254
|
+
--color-blue-gray-100: #f1f5f9;
|
255
|
+
--color-blue-gray-200: #e2e8f0;
|
256
|
+
--color-blue-gray-300: #cbd5e1;
|
257
|
+
--color-blue-gray-400: #94a3b8;
|
258
|
+
--color-blue-gray-500: #64748b;
|
259
|
+
--color-blue-gray-600: #475569;
|
260
|
+
--color-blue-gray-700: #334155;
|
261
|
+
--color-blue-gray-800: #1e293b;
|
262
|
+
--color-blue-gray-900: #0f172a;
|
263
|
+
|
264
|
+
--spacing-none: 0;
|
265
|
+
--spacing-xs: 5;
|
266
|
+
--spacing-sm: 15;
|
267
|
+
--spacing-md: 20;
|
268
|
+
--spacing-lg: 40;
|
269
|
+
|
270
|
+
--font-family-sans: 'Montserrat', Arial, sans-serif;
|
271
|
+
--font-family-mono: 'Roboto Mono', 'Courier New', monospace;
|
272
|
+
|
273
|
+
--font-size-mini: 12px;
|
274
|
+
--font-size-base: 14px;
|
275
|
+
--font-size-xs: 1.2rem;
|
276
|
+
--font-size-sm: 1.4rem;
|
277
|
+
--font-size-md: 1.6rem;
|
278
|
+
--font-size-lg: 1.8rem;
|
279
|
+
--font-size-xl: 2.2rem;
|
280
|
+
--font-size-2xl: 6rem;
|
281
|
+
|
282
|
+
--font-weight-hairline: 100;
|
283
|
+
--font-weight-thin: 200;
|
284
|
+
--font-weight-light: 300;
|
285
|
+
--font-weight-normal: 400;
|
286
|
+
--font-weight-medium: 500;
|
287
|
+
--font-weight-semibold: 600;
|
288
|
+
--font-weight-bold: 700;
|
289
|
+
--font-weight-extrabold: 800;
|
290
|
+
--font-weight-black: 900;
|
291
|
+
|
292
|
+
--line-height-none: 1;
|
293
|
+
--line-height-tight: 1.25;
|
294
|
+
--line-height-snug: 1.375;
|
295
|
+
--line-height-normal: 1.5;
|
296
|
+
--line-height-relaxed: 1.625;
|
297
|
+
--line-height-loose: 2;
|
298
|
+
|
299
|
+
--letter-spacing-tighter: -0.05em;
|
300
|
+
--letter-spacing-tight: -0.025em;
|
301
|
+
--letter-spacing-normal: 0;
|
302
|
+
--letter-spacing-wide: 0.025em;
|
303
|
+
--letter-spacing-wider: 0.05em;
|
304
|
+
--letter-spacing-widest: 0.1em;
|
305
|
+
|
306
|
+
--box-shadow-none: none;
|
307
|
+
--box-shadow-xs: 0px 3px 6px rgba(0, 0, 0, 0.05);
|
308
|
+
--box-shadow-sm: 0px 4px 5px rgba(0, 0, 0, 0.07);
|
309
|
+
|
310
|
+
--border-radius-none: 0;
|
311
|
+
--border-radius-xs: 4px;
|
312
|
+
--border-radius-sm: 10px;
|
313
|
+
--border-radius-md: 20px;
|
314
|
+
--border-radius-lg: 30px;
|
315
|
+
--border-radius-full: 9999px;
|
316
|
+
|
317
|
+
--border-width-none: 0;
|
318
|
+
--border-width-thin: 1px;
|
319
|
+
--border-width-thick: 2px;
|
320
|
+
|
321
|
+
--opacity-0: 0;
|
322
|
+
--opacity-25: 0.25;
|
323
|
+
--opacity-50: 0.5;
|
324
|
+
--opacity-75: 0.75;
|
325
|
+
--opacity-100: 1;
|
326
|
+
|
327
|
+
--z-index-0: 0;
|
328
|
+
--z-index-10: 10;
|
329
|
+
--z-index-20: 20;
|
330
|
+
--z-index-30: 30;
|
331
|
+
--z-index-40: 40;
|
332
|
+
--z-index-50: 50;
|
333
|
+
--z-index-auto: auto;
|
334
|
+
|
335
|
+
--color-primary: #283571;
|
336
|
+
--color-primary-muted: #02338D;
|
337
|
+
--color-primary-highlight: #eff1fd;
|
338
|
+
--color-primary-inverted: #fcfdfd;
|
339
|
+
--color-font-base: #455970;
|
340
|
+
--color-font-muted: #7e858c;
|
341
|
+
--color-font-highlight: #b7b7b7;
|
342
|
+
--color-font-inverted: #fff;
|
343
|
+
--color-secondary: #ed495e;
|
344
|
+
--color-secondary-muted: #eb2d52;
|
345
|
+
--color-secondary-highlight: #fecdd3;
|
346
|
+
--color-secondary-inverted: #fff;
|
347
|
+
--color-tertiary: #00A3DA;
|
348
|
+
--color-tertiary-muted: #34d399;
|
349
|
+
--color-tertiary-highlight: #a7f3d0;
|
350
|
+
--color-tertiary-inverted: #fff;
|
351
|
+
|
352
|
+
--background-color-primary: #e8e8e8;
|
353
|
+
--background-color-primary-highlight: #fcfdfd;
|
354
|
+
|
355
|
+
--container-max-width: 800px;
|
356
|
+
|
357
|
+
--button-max-width: 300px;
|
358
|
+
|
359
|
+
--button-border-radius-sm: 10px;
|
360
|
+
--button-border-radius-md: 20px;
|
361
|
+
--button-border-radius-lg: 30px;
|
362
|
+
|
363
|
+
--input-height: 38px;
|
364
|
+
--input-max-width: 400px;
|
365
|
+
--input-background: #fff;
|
366
|
+
--input-border-radius: 30px;
|
367
|
+
--input-font-size: 1.2rem;
|
368
|
+
|
369
|
+
--paragraph-font-size-xs: 14px;
|
370
|
+
--paragraph-font-size-sm: 1.2rem;
|
371
|
+
--paragraph-font-size-md: 1.4rem;
|
372
|
+
--paragraph-font-size-lg: 1.6rem;
|
373
|
+
|
374
|
+
--textarea-border-radius: 10px;
|
375
|
+
|
376
|
+
--picture-border: 1px solid #7e858c;
|
377
|
+
|
378
|
+
--card-border-radius: 10px;
|
379
|
+
|
380
|
+
--task-border-radius: 10px;
|
381
|
+
|
382
|
+
--chronometer-background-color: #d4d4d8;
|
383
|
+
--chronometer-color: #eab308;
|
384
|
+
--chronometer-border-radius: 9999px;
|
385
|
+
--chronometer-height: 6px;
|
386
|
+
|
387
|
+
--modal-backdrop-color: rgba(255, 255, 255, 0.85);
|
388
|
+
|
389
|
+
--modal-desktop-height: 650px;
|
390
|
+
--modal-desktop-max-width: 750px;
|
391
|
+
}
|