@ossy/themes 0.0.9-alpha → 0.0.10-alpha
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/build/cjs/index.js +1 -1
- package/build/esm/index.js +1 -1
- package/package.json +1 -1
- package/src/ossy.js +2 -1
- package/src/standard.js +0 -1
- package/src/tepit.js +32 -1
package/package.json
CHANGED
package/src/ossy.js
CHANGED
|
@@ -243,6 +243,7 @@ export const Ossy = {
|
|
|
243
243
|
cta: {
|
|
244
244
|
'background': 'hsl(167, 89%, 43%)',
|
|
245
245
|
'color': 'hsl(0, 0%, 98%)',
|
|
246
|
+
'box-shadow': '3px 0 10px hsla(0, 0%, 85%, .75)',
|
|
246
247
|
|
|
247
248
|
'background-hover': 'hsl(167, 89%, 38%)',
|
|
248
249
|
'color-hover': 'hsl(0, 0%, 98%)'
|
|
@@ -253,7 +254,7 @@ export const Ossy = {
|
|
|
253
254
|
'button-link-border-color': 'transparent',
|
|
254
255
|
|
|
255
256
|
'button-link-background-hover': 'transparent',
|
|
256
|
-
'button-link-color-hover': 'hsl(167, 89%, 43%)'
|
|
257
|
+
'button-link-color-hover': 'hsl(167, 89%, 43%)',
|
|
257
258
|
},
|
|
258
259
|
|
|
259
260
|
command: {
|
package/src/standard.js
CHANGED
package/src/tepit.js
CHANGED
|
@@ -38,8 +38,11 @@ export const Tepit = {
|
|
|
38
38
|
},
|
|
39
39
|
|
|
40
40
|
primary: {
|
|
41
|
-
background: 'hsl(207, 95%, 8%)',
|
|
42
41
|
foreground: 'hsl(207, 70%, 95%)',
|
|
42
|
+
'foreground-hover': 'hsl(207, 70%, 96%)',
|
|
43
|
+
background: 'hsla(207, 95%, 8%, .6)',
|
|
44
|
+
'background-hover': 'hsla(207, 95%, 8%, .7)',
|
|
45
|
+
backdropFilter: 'saturate(180%) blur(10px)',
|
|
43
46
|
separator: 'hsl(203, 50%, 15%)',
|
|
44
47
|
},
|
|
45
48
|
|
|
@@ -49,6 +52,16 @@ export const Tepit = {
|
|
|
49
52
|
separator: 'hsl(203, 50%, 15%)',
|
|
50
53
|
},
|
|
51
54
|
|
|
55
|
+
decorated: {
|
|
56
|
+
background: `
|
|
57
|
+
linear-gradient(180deg, var(--surface-primary) 0%, transparent 100%),
|
|
58
|
+
${topography('hsla(354, 80%, 38%, .3)')},
|
|
59
|
+
linear-gradient(180deg, var(--surface-primary) 0%, transparent 100%),
|
|
60
|
+
linear-gradient(-135deg, var(--surface-primary) 20%, hsl(354, 50%, 38%) 100%)
|
|
61
|
+
`,
|
|
62
|
+
foreground: 'hsl(182, 23%, 95%)',
|
|
63
|
+
},
|
|
64
|
+
|
|
52
65
|
|
|
53
66
|
},
|
|
54
67
|
|
|
@@ -169,6 +182,24 @@ export const Tepit = {
|
|
|
169
182
|
'color-hover': 'hsl(23, 100%, 80%)'
|
|
170
183
|
},
|
|
171
184
|
|
|
185
|
+
command: {
|
|
186
|
+
'border-radius': '4px',
|
|
187
|
+
'padding': '4px',
|
|
188
|
+
|
|
189
|
+
'background': 'transparent',
|
|
190
|
+
'background-hover': 'hsl(0, 0%, 95%)',
|
|
191
|
+
'color-hover': 'hsl(199deg 89% 43%)'
|
|
192
|
+
},
|
|
193
|
+
|
|
194
|
+
'command-danger': {
|
|
195
|
+
'border-radius': '4px',
|
|
196
|
+
'padding': '4px',
|
|
197
|
+
|
|
198
|
+
'background': 'transparent',
|
|
199
|
+
'background-hover': 'hsl(0, 0%, 95%)',
|
|
200
|
+
'color-hover': 'hsl(0, 89%, 43%)'
|
|
201
|
+
},
|
|
202
|
+
|
|
172
203
|
tab: {
|
|
173
204
|
'border-style': 'solid',
|
|
174
205
|
'border-color': 'transparent',
|