@ossy/themes 0.0.10-alpha → 0.0.10

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 CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@ossy/themes",
3
- "repository": "github:ossy-se/ossy",
3
+ "repository": "github:ossy-se/packages",
4
4
  "description": "Ossy's design system themes",
5
- "version": "0.0.10-alpha",
5
+ "version": "0.0.10",
6
6
  "source": "src/index.js",
7
7
  "main": "build/cjs/index.js",
8
8
  "module": "build/esm/index.js",
@@ -18,13 +18,13 @@
18
18
  "@babel/eslint-parser": "^7.15.8",
19
19
  "@babel/preset-env": "^7.21.5",
20
20
  "@babel/preset-react": "^7.24.1",
21
- "@rollup/plugin-node-resolve": "^15.3.0",
22
21
  "@rollup/plugin-babel": "6.0.4",
23
- "babel-loader": "^9.1.3",
24
- "@rollup/plugin-terser": "0.4.4",
25
22
  "@rollup/plugin-commonjs": "^25.0.5",
23
+ "@rollup/plugin-node-resolve": "^15.3.0",
24
+ "@rollup/plugin-terser": "0.4.4",
26
25
  "@rollup/plugin-typescript": "^11.1.5",
27
26
  "@types/react": "18.2.79",
27
+ "babel-loader": "^9.1.3",
28
28
  "rollup": "^4.24.3",
29
29
  "rollup-plugin-dts": "^6.1.0",
30
30
  "rollup-plugin-peer-deps-external": "^2.2.4",
@@ -43,5 +43,9 @@
43
43
  "last 1 firefox version",
44
44
  "last 1 safari version"
45
45
  ]
46
- }
46
+ },
47
+ "publishConfig": {
48
+ "access": "public"
49
+ },
50
+ "gitHead": "22ec3583362a630a927d9b7d0275787990062fdf"
47
51
  }
@@ -1,7 +1,7 @@
1
1
  import { Standard } from './standard.js'
2
2
  import { topography } from './patterns/index.js'
3
3
 
4
- export const Tepit = {
4
+ export const CloudDark = {
5
5
 
6
6
  space: Standard.space,
7
7
  'max-width': Standard['max-width'],
@@ -59,6 +59,8 @@ export const Tepit = {
59
59
  linear-gradient(180deg, var(--surface-primary) 0%, transparent 100%),
60
60
  linear-gradient(-135deg, var(--surface-primary) 20%, hsl(354, 50%, 38%) 100%)
61
61
  `,
62
+ 'background-hover': 'var(--surface-primary)',
63
+ 'background-active': 'var(--surface-primary)',
62
64
  foreground: 'hsl(182, 23%, 95%)',
63
65
  },
64
66
 
@@ -4,7 +4,7 @@ import { topography } from './patterns/index.js'
4
4
  // hsl(198, 96%, 10%) accent from old site
5
5
 
6
6
 
7
- export const Ossy = {
7
+ export const CloudLight = {
8
8
  ...Standard,
9
9
 
10
10
  surface: {
package/src/index.js CHANGED
@@ -1,8 +1,9 @@
1
+ export * from './cloud-dark.js'
2
+ export * from './cloud-light.js'
1
3
  export * from './gaming.js'
2
4
  export * from './glass.js'
3
5
  export * from './minimal.js'
4
6
  export * from './oskarssylwan.js'
5
- export * from './ossy.js'
6
7
  export * from './plexus-sanitas.js'
7
8
  export * from './standard.js'
8
- export * from './tepit.js'
9
+
@@ -1,2 +1,2 @@
1
- export * from './ossy.js'
1
+ export * from './cloud-light.js'
2
2
  export * from './minimal.js'