do-ui-design-system 1.1.0 → 1.1.1
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/do-theme/color.css +7 -7
- package/dist/do-theme/font.css +24 -23
- package/package.json +1 -1
package/dist/do-theme/color.css
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
.do-bg--primary {
|
|
2
|
-
background-color: var(--do-bg
|
|
2
|
+
background-color: var(--do-bg-primary);
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
.do-bg--secondary {
|
|
6
|
-
background-color: var(--do-bg
|
|
6
|
+
background-color: var(--do-bg-secondary);
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
.do-box {
|
|
10
|
-
border: 1px solid var(--do-box
|
|
10
|
+
border: 1px solid var(--do-box-primary-border);
|
|
11
11
|
color: var(--do-text-base);
|
|
12
12
|
border-radius: 0.5rem;
|
|
13
13
|
padding: 1.5rem;
|
|
14
14
|
|
|
15
15
|
&.do-box--primary {
|
|
16
|
-
border-color: var(--do-box
|
|
17
|
-
background-color: var(--do-box
|
|
16
|
+
border-color: var(--do-box-primary-border);
|
|
17
|
+
background-color: var(--do-box-primary-bg);
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
&.do-box--secondary {
|
|
21
|
-
border-color: var(--do-box
|
|
22
|
-
background-color: var(--do-box
|
|
21
|
+
border-color: var(--do-box-secondary-border);
|
|
22
|
+
background-color: var(--do-box-secondary-bg);
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
&.do-box--sm {
|
package/dist/do-theme/font.css
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
/* Inter y Space Grotesk están importados al final de este documento css
|
|
2
2
|
Estas fuentes están descargadas en la carpeta fonts*/
|
|
3
3
|
|
|
4
|
-
* {
|
|
5
|
-
font-family: 'Inter', sans-serif;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
4
|
.do-text-grotesk {
|
|
9
5
|
font-family: "Space Grotesk", sans-serif;
|
|
10
|
-
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.do-text-inter {
|
|
9
|
+
font-family: 'Inter', sans-serif;
|
|
11
10
|
}
|
|
12
11
|
|
|
13
12
|
/*dark/light theme color*/
|
|
@@ -29,6 +28,7 @@ h3,
|
|
|
29
28
|
h4,
|
|
30
29
|
h5,
|
|
31
30
|
h6 {
|
|
31
|
+
font-family: "Space Grotesk", sans-serif !important;
|
|
32
32
|
font-weight: 500;
|
|
33
33
|
}
|
|
34
34
|
|
|
@@ -58,31 +58,32 @@ h6 {
|
|
|
58
58
|
|
|
59
59
|
p,
|
|
60
60
|
li {
|
|
61
|
+
font-family: 'Inter', sans-serif !important;
|
|
61
62
|
font-size: 0.75rem;
|
|
62
63
|
font-weight: 400;
|
|
63
64
|
}
|
|
64
65
|
|
|
65
|
-
h1.do-text-
|
|
66
|
+
h1.do-text-web {
|
|
66
67
|
font-size: 2.25rem;
|
|
67
68
|
}
|
|
68
69
|
|
|
69
|
-
h2.do-text-
|
|
70
|
+
h2.do-text-web {
|
|
70
71
|
font-size: 1.25rem;
|
|
71
72
|
}
|
|
72
73
|
|
|
73
|
-
h3.do-text-
|
|
74
|
+
h3.do-text-web {
|
|
74
75
|
font-size: 1.125rem;
|
|
75
76
|
}
|
|
76
77
|
|
|
77
|
-
h4.do-text-
|
|
78
|
+
h4.do-text-web {
|
|
78
79
|
font-size: 1rem;
|
|
79
80
|
}
|
|
80
81
|
|
|
81
|
-
h5.do-text-
|
|
82
|
+
h5.do-text-web {
|
|
82
83
|
font-size: 1rem;
|
|
83
84
|
}
|
|
84
85
|
|
|
85
|
-
h6.do-text-
|
|
86
|
+
h6.do-text-web {
|
|
86
87
|
font-size: 1rem;
|
|
87
88
|
}
|
|
88
89
|
|
|
@@ -116,27 +117,27 @@ h6.do-text-grotesk {
|
|
|
116
117
|
font-size: 0.875rem;
|
|
117
118
|
}
|
|
118
119
|
|
|
119
|
-
h1.do-text-
|
|
120
|
+
h1.do-text-web {
|
|
120
121
|
font-size: 3rem;
|
|
121
122
|
}
|
|
122
123
|
|
|
123
|
-
h2.do-text-
|
|
124
|
+
h2.do-text-web {
|
|
124
125
|
font-size: 1.5rem;
|
|
125
126
|
}
|
|
126
127
|
|
|
127
|
-
h3.do-text-
|
|
128
|
+
h3.do-text-web {
|
|
128
129
|
font-size: 1.5rem;
|
|
129
130
|
}
|
|
130
131
|
|
|
131
|
-
h4.do-text-
|
|
132
|
+
h4.do-text-web {
|
|
132
133
|
font-size: 1.25rem;
|
|
133
134
|
}
|
|
134
135
|
|
|
135
|
-
h5.do-text-
|
|
136
|
+
h5.do-text-web {
|
|
136
137
|
font-size: 1rem;
|
|
137
138
|
}
|
|
138
139
|
|
|
139
|
-
h6.do-text-
|
|
140
|
+
h6.do-text-web {
|
|
140
141
|
font-size: 1rem;
|
|
141
142
|
}
|
|
142
143
|
}
|
|
@@ -171,27 +172,27 @@ h6.do-text-grotesk {
|
|
|
171
172
|
font-size: 1rem;
|
|
172
173
|
}
|
|
173
174
|
|
|
174
|
-
h1.do-text-
|
|
175
|
+
h1.do-text-web {
|
|
175
176
|
font-size: 3.75rem;
|
|
176
177
|
}
|
|
177
178
|
|
|
178
|
-
h2.do-text-
|
|
179
|
+
h2.do-text-web {
|
|
179
180
|
font-size: 1.875rem;
|
|
180
181
|
}
|
|
181
182
|
|
|
182
|
-
h3.do-text-
|
|
183
|
+
h3.do-text-web {
|
|
183
184
|
font-size: 1.5rem;
|
|
184
185
|
}
|
|
185
186
|
|
|
186
|
-
h4.do-text-
|
|
187
|
+
h4.do-text-web {
|
|
187
188
|
font-size: 1.25rem;
|
|
188
189
|
}
|
|
189
190
|
|
|
190
|
-
h5.do-text-
|
|
191
|
+
h5.do-text-web {
|
|
191
192
|
font-size: 1rem;
|
|
192
193
|
}
|
|
193
194
|
|
|
194
|
-
h6.do-text-
|
|
195
|
+
h6.do-text-web {
|
|
195
196
|
font-size: 1rem;
|
|
196
197
|
}
|
|
197
198
|
}
|