@ossy/themes 0.0.2-alpha → 0.0.4-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 +1 -1
- package/src/plexus-sanitas.js +2 -3
package/package.json
CHANGED
package/src/ossy.js
CHANGED
|
@@ -113,7 +113,7 @@ export const Ossy = {
|
|
|
113
113
|
|
|
114
114
|
decorated: {
|
|
115
115
|
background: `
|
|
116
|
-
radial-gradient(ellipse at center, transparent 100%,
|
|
116
|
+
radial-gradient(ellipse at center, transparent 100%, hsla(0, 0%, 100%, .6) 100%),
|
|
117
117
|
${topography()},
|
|
118
118
|
linear-gradient(90deg, hsla(200, 80%, 85%, 1) 0%, hsla(200, 100%, 97%, 1) 20%, hsla(15, 100%, 95%, 1) 80%, hsla(15, 100%, 85%, 1) 100%)
|
|
119
119
|
`,
|
package/src/plexus-sanitas.js
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import { Standard } from './standard.js'
|
|
2
2
|
|
|
3
3
|
export const PlexusSanitas = {
|
|
4
|
-
|
|
5
|
-
space: Standard.space,
|
|
6
|
-
'max-width': Standard['max-width'],
|
|
4
|
+
...Standard,
|
|
7
5
|
|
|
8
6
|
surface: {
|
|
7
|
+
...Standard.surface,
|
|
9
8
|
'primary': 'hsl(78, 33%, 99%)',
|
|
10
9
|
'secondary': 'hsl(80, 45%, 95%)',
|
|
11
10
|
'radial-gradient': 'radial-gradient(hsl(199deg 98% 85%) 0%, hsl(0deg 0% 100%) 80%)',
|