@augmenting-integrations/themes 0.1.0
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/LICENSE +21 -0
- package/dist/index.d.ts +24 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +51 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +45 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +42 -0
- package/src/css/teal-pro.css +73 -0
- package/src/css/tokyo.css +74 -0
- package/src/css/vapor.css +74 -0
- package/src/css/warm-sun.css +73 -0
- package/src/css/woxom.css +79 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Augmenting Integrations LLC
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { ThemeName } from "@augmenting-integrations/brand";
|
|
2
|
+
export type ThemeMeta = {
|
|
3
|
+
id: ThemeName;
|
|
4
|
+
label: string;
|
|
5
|
+
description: string;
|
|
6
|
+
swatch: {
|
|
7
|
+
primary: string;
|
|
8
|
+
primaryDark: string;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* Base themes shipped with the platform. Each tenant app extends this list
|
|
13
|
+
* with its own brand themes via the merged-registry pattern:
|
|
14
|
+
*
|
|
15
|
+
* import { BASE_THEMES } from "@augmenting-integrations/themes";
|
|
16
|
+
* import { acmeTheme } from "./styles/themes/acmeTheme";
|
|
17
|
+
* export const THEMES = [acmeTheme, ...BASE_THEMES];
|
|
18
|
+
*
|
|
19
|
+
* The CSS files for the base themes are exposed via the `./css/<id>.css`
|
|
20
|
+
* subpath export — apps `@import` only the ones they want at globals.css.
|
|
21
|
+
*/
|
|
22
|
+
export declare const BASE_THEMES: ThemeMeta[];
|
|
23
|
+
export declare const THEME_COOKIE_KEY = "x-theme";
|
|
24
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,gCAAgC,CAAC;AAEhE,MAAM,MAAM,SAAS,GAAG;IACtB,EAAE,EAAE,SAAS,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE;QAAE,OAAO,EAAE,MAAM,CAAC;QAAC,WAAW,EAAE,MAAM,CAAA;KAAE,CAAC;CAClD,CAAC;AAEF;;;;;;;;;;GAUG;AACH,eAAO,MAAM,WAAW,EAAE,SAAS,EAqClC,CAAC;AAEF,eAAO,MAAM,gBAAgB,YAAY,CAAC"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Base themes shipped with the platform. Each tenant app extends this list
|
|
3
|
+
* with its own brand themes via the merged-registry pattern:
|
|
4
|
+
*
|
|
5
|
+
* import { BASE_THEMES } from "@augmenting-integrations/themes";
|
|
6
|
+
* import { acmeTheme } from "./styles/themes/acmeTheme";
|
|
7
|
+
* export const THEMES = [acmeTheme, ...BASE_THEMES];
|
|
8
|
+
*
|
|
9
|
+
* The CSS files for the base themes are exposed via the `./css/<id>.css`
|
|
10
|
+
* subpath export — apps `@import` only the ones they want at globals.css.
|
|
11
|
+
*/
|
|
12
|
+
export const BASE_THEMES = [
|
|
13
|
+
{
|
|
14
|
+
id: "neutral",
|
|
15
|
+
label: "Neutral",
|
|
16
|
+
description: "Cool grayscale, professional, restrained — shadcn defaults.",
|
|
17
|
+
swatch: { primary: "#18181b", primaryDark: "#e5e5e5" },
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
id: "woxom",
|
|
21
|
+
label: "Woxom",
|
|
22
|
+
description: "Navy + Tokyo Night neon dashboard. Reference brand-faithful theme.",
|
|
23
|
+
swatch: { primary: "#1C4587", primaryDark: "#7aa2f7" },
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
id: "teal-pro",
|
|
27
|
+
label: "Teal Pro",
|
|
28
|
+
description: "Corporate teal — clean and slightly cool.",
|
|
29
|
+
swatch: { primary: "#0f766e", primaryDark: "#14b8a6" },
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
id: "warm-sun",
|
|
33
|
+
label: "Warm Sun",
|
|
34
|
+
description: "Energetic warm orange — friendly and approachable.",
|
|
35
|
+
swatch: { primary: "#c2410c", primaryDark: "#fb923c" },
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
id: "tokyo",
|
|
39
|
+
label: "Tokyo",
|
|
40
|
+
description: "Tokyo Night dark with neon accents; muted indigo when light.",
|
|
41
|
+
swatch: { primary: "#3d59a1", primaryDark: "#7aa2f7" },
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
id: "vapor",
|
|
45
|
+
label: "Vapor",
|
|
46
|
+
description: "Pastel lavender light with vibrant accents; deep purple when dark.",
|
|
47
|
+
swatch: { primary: "#6d4cff", primaryDark: "#a78bfa" },
|
|
48
|
+
},
|
|
49
|
+
];
|
|
50
|
+
export const THEME_COOKIE_KEY = "x-theme";
|
|
51
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AASA;;;;;;;;;;GAUG;AACH,MAAM,CAAC,MAAM,WAAW,GAAgB;IACtC;QACE,EAAE,EAAE,SAAS;QACb,KAAK,EAAE,SAAS;QAChB,WAAW,EAAE,6DAA6D;QAC1E,MAAM,EAAE,EAAE,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,SAAS,EAAE;KACvD;IACD;QACE,EAAE,EAAE,OAAO;QACX,KAAK,EAAE,OAAO;QACd,WAAW,EAAE,oEAAoE;QACjF,MAAM,EAAE,EAAE,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,SAAS,EAAE;KACvD;IACD;QACE,EAAE,EAAE,UAAU;QACd,KAAK,EAAE,UAAU;QACjB,WAAW,EAAE,2CAA2C;QACxD,MAAM,EAAE,EAAE,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,SAAS,EAAE;KACvD;IACD;QACE,EAAE,EAAE,UAAU;QACd,KAAK,EAAE,UAAU;QACjB,WAAW,EAAE,oDAAoD;QACjE,MAAM,EAAE,EAAE,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,SAAS,EAAE;KACvD;IACD;QACE,EAAE,EAAE,OAAO;QACX,KAAK,EAAE,OAAO;QACd,WAAW,EAAE,8DAA8D;QAC3E,MAAM,EAAE,EAAE,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,SAAS,EAAE;KACvD;IACD;QACE,EAAE,EAAE,OAAO;QACX,KAAK,EAAE,OAAO;QACd,WAAW,EAAE,oEAAoE;QACjF,MAAM,EAAE,EAAE,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,SAAS,EAAE;KACvD;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,gBAAgB,GAAG,SAAS,CAAC"}
|
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
// src/index.ts
|
|
2
|
+
var BASE_THEMES = [
|
|
3
|
+
{
|
|
4
|
+
id: "neutral",
|
|
5
|
+
label: "Neutral",
|
|
6
|
+
description: "Cool grayscale, professional, restrained \u2014 shadcn defaults.",
|
|
7
|
+
swatch: { primary: "#18181b", primaryDark: "#e5e5e5" }
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
id: "woxom",
|
|
11
|
+
label: "Woxom",
|
|
12
|
+
description: "Navy + Tokyo Night neon dashboard. Reference brand-faithful theme.",
|
|
13
|
+
swatch: { primary: "#1C4587", primaryDark: "#7aa2f7" }
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
id: "teal-pro",
|
|
17
|
+
label: "Teal Pro",
|
|
18
|
+
description: "Corporate teal \u2014 clean and slightly cool.",
|
|
19
|
+
swatch: { primary: "#0f766e", primaryDark: "#14b8a6" }
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
id: "warm-sun",
|
|
23
|
+
label: "Warm Sun",
|
|
24
|
+
description: "Energetic warm orange \u2014 friendly and approachable.",
|
|
25
|
+
swatch: { primary: "#c2410c", primaryDark: "#fb923c" }
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
id: "tokyo",
|
|
29
|
+
label: "Tokyo",
|
|
30
|
+
description: "Tokyo Night dark with neon accents; muted indigo when light.",
|
|
31
|
+
swatch: { primary: "#3d59a1", primaryDark: "#7aa2f7" }
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
id: "vapor",
|
|
35
|
+
label: "Vapor",
|
|
36
|
+
description: "Pastel lavender light with vibrant accents; deep purple when dark.",
|
|
37
|
+
swatch: { primary: "#6d4cff", primaryDark: "#a78bfa" }
|
|
38
|
+
}
|
|
39
|
+
];
|
|
40
|
+
var THEME_COOKIE_KEY = "x-theme";
|
|
41
|
+
export {
|
|
42
|
+
BASE_THEMES,
|
|
43
|
+
THEME_COOKIE_KEY
|
|
44
|
+
};
|
|
45
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"sourcesContent":["import type { ThemeName } from \"@augmenting-integrations/brand\";\n\nexport type ThemeMeta = {\n id: ThemeName;\n label: string;\n description: string;\n swatch: { primary: string; primaryDark: string };\n};\n\n/**\n * Base themes shipped with the platform. Each tenant app extends this list\n * with its own brand themes via the merged-registry pattern:\n *\n * import { BASE_THEMES } from \"@augmenting-integrations/themes\";\n * import { acmeTheme } from \"./styles/themes/acmeTheme\";\n * export const THEMES = [acmeTheme, ...BASE_THEMES];\n *\n * The CSS files for the base themes are exposed via the `./css/<id>.css`\n * subpath export — apps `@import` only the ones they want at globals.css.\n */\nexport const BASE_THEMES: ThemeMeta[] = [\n {\n id: \"neutral\",\n label: \"Neutral\",\n description: \"Cool grayscale, professional, restrained — shadcn defaults.\",\n swatch: { primary: \"#18181b\", primaryDark: \"#e5e5e5\" },\n },\n {\n id: \"woxom\",\n label: \"Woxom\",\n description: \"Navy + Tokyo Night neon dashboard. Reference brand-faithful theme.\",\n swatch: { primary: \"#1C4587\", primaryDark: \"#7aa2f7\" },\n },\n {\n id: \"teal-pro\",\n label: \"Teal Pro\",\n description: \"Corporate teal — clean and slightly cool.\",\n swatch: { primary: \"#0f766e\", primaryDark: \"#14b8a6\" },\n },\n {\n id: \"warm-sun\",\n label: \"Warm Sun\",\n description: \"Energetic warm orange — friendly and approachable.\",\n swatch: { primary: \"#c2410c\", primaryDark: \"#fb923c\" },\n },\n {\n id: \"tokyo\",\n label: \"Tokyo\",\n description: \"Tokyo Night dark with neon accents; muted indigo when light.\",\n swatch: { primary: \"#3d59a1\", primaryDark: \"#7aa2f7\" },\n },\n {\n id: \"vapor\",\n label: \"Vapor\",\n description: \"Pastel lavender light with vibrant accents; deep purple when dark.\",\n swatch: { primary: \"#6d4cff\", primaryDark: \"#a78bfa\" },\n },\n];\n\nexport const THEME_COOKIE_KEY = \"x-theme\";\n"],"mappings":";AAoBO,IAAM,cAA2B;AAAA,EACtC;AAAA,IACE,IAAI;AAAA,IACJ,OAAO;AAAA,IACP,aAAa;AAAA,IACb,QAAQ,EAAE,SAAS,WAAW,aAAa,UAAU;AAAA,EACvD;AAAA,EACA;AAAA,IACE,IAAI;AAAA,IACJ,OAAO;AAAA,IACP,aAAa;AAAA,IACb,QAAQ,EAAE,SAAS,WAAW,aAAa,UAAU;AAAA,EACvD;AAAA,EACA;AAAA,IACE,IAAI;AAAA,IACJ,OAAO;AAAA,IACP,aAAa;AAAA,IACb,QAAQ,EAAE,SAAS,WAAW,aAAa,UAAU;AAAA,EACvD;AAAA,EACA;AAAA,IACE,IAAI;AAAA,IACJ,OAAO;AAAA,IACP,aAAa;AAAA,IACb,QAAQ,EAAE,SAAS,WAAW,aAAa,UAAU;AAAA,EACvD;AAAA,EACA;AAAA,IACE,IAAI;AAAA,IACJ,OAAO;AAAA,IACP,aAAa;AAAA,IACb,QAAQ,EAAE,SAAS,WAAW,aAAa,UAAU;AAAA,EACvD;AAAA,EACA;AAAA,IACE,IAAI;AAAA,IACJ,OAAO;AAAA,IACP,aAAa;AAAA,IACb,QAAQ,EAAE,SAAS,WAAW,aAAa,UAAU;AAAA,EACvD;AACF;AAEO,IAAM,mBAAmB;","names":[]}
|
package/package.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@augmenting-integrations/themes",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Theme CSS files and registry. Each theme defines tokens for both data-theme attribute and .dark variant.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"publishConfig": {
|
|
7
|
+
"access": "public"
|
|
8
|
+
},
|
|
9
|
+
"sideEffects": [
|
|
10
|
+
"./src/css/*.css"
|
|
11
|
+
],
|
|
12
|
+
"main": "./dist/index.cjs",
|
|
13
|
+
"module": "./dist/index.js",
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"exports": {
|
|
16
|
+
".": {
|
|
17
|
+
"types": "./dist/index.d.ts",
|
|
18
|
+
"import": "./dist/index.js",
|
|
19
|
+
"require": "./dist/index.cjs"
|
|
20
|
+
},
|
|
21
|
+
"./css/*": "./src/css/*"
|
|
22
|
+
},
|
|
23
|
+
"files": [
|
|
24
|
+
"dist",
|
|
25
|
+
"src/css",
|
|
26
|
+
"README.md"
|
|
27
|
+
],
|
|
28
|
+
"peerDependencies": {
|
|
29
|
+
"@augmenting-integrations/brand": "0.1.0"
|
|
30
|
+
},
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"tsup": "^8.3.5",
|
|
33
|
+
"typescript": "^5.7.2",
|
|
34
|
+
"vitest": "^4.1.5",
|
|
35
|
+
"@augmenting-integrations/brand": "0.1.0"
|
|
36
|
+
},
|
|
37
|
+
"scripts": {
|
|
38
|
+
"build": "tsup",
|
|
39
|
+
"clean": "rm -rf dist",
|
|
40
|
+
"test": "vitest run --passWithNoTests"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
/* ===================================================================== */
|
|
2
|
+
/* TEAL PRO theme */
|
|
3
|
+
/* Corporate teal — clean, professional, slightly cool. */
|
|
4
|
+
/* ===================================================================== */
|
|
5
|
+
|
|
6
|
+
[data-theme="teal-pro"] {
|
|
7
|
+
--background: #ffffff;
|
|
8
|
+
--foreground: #042f2e;
|
|
9
|
+
--card: #f0fdfa;
|
|
10
|
+
--card-foreground: #042f2e;
|
|
11
|
+
--popover: #ffffff;
|
|
12
|
+
--popover-foreground: #042f2e;
|
|
13
|
+
--primary: #0f766e;
|
|
14
|
+
--primary-foreground: #ffffff;
|
|
15
|
+
--secondary: #ccfbf1;
|
|
16
|
+
--secondary-foreground: #134e4a;
|
|
17
|
+
--muted: #f0fdfa;
|
|
18
|
+
--muted-foreground: #475569;
|
|
19
|
+
--accent: #5eead4;
|
|
20
|
+
--accent-foreground: #042f2e;
|
|
21
|
+
--destructive: #b91c1c;
|
|
22
|
+
--border: #d1d5db;
|
|
23
|
+
--input: #d1d5db;
|
|
24
|
+
--ring: #0f766e;
|
|
25
|
+
--chart-1: #0f766e;
|
|
26
|
+
--chart-2: #14b8a6;
|
|
27
|
+
--chart-3: #5eead4;
|
|
28
|
+
--chart-4: #f59e0b;
|
|
29
|
+
--chart-5: #b91c1c;
|
|
30
|
+
--radius: 0.5rem;
|
|
31
|
+
--sidebar: #f0fdfa;
|
|
32
|
+
--sidebar-foreground: #042f2e;
|
|
33
|
+
--sidebar-primary: #0f766e;
|
|
34
|
+
--sidebar-primary-foreground: #ffffff;
|
|
35
|
+
--sidebar-accent: #ccfbf1;
|
|
36
|
+
--sidebar-accent-foreground: #134e4a;
|
|
37
|
+
--sidebar-border: #d1d5db;
|
|
38
|
+
--sidebar-ring: #0f766e;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
[data-theme="teal-pro"].dark {
|
|
42
|
+
--background: #042f2e;
|
|
43
|
+
--foreground: #ccfbf1;
|
|
44
|
+
--card: #134e4a;
|
|
45
|
+
--card-foreground: #ccfbf1;
|
|
46
|
+
--popover: #134e4a;
|
|
47
|
+
--popover-foreground: #ccfbf1;
|
|
48
|
+
--primary: #14b8a6;
|
|
49
|
+
--primary-foreground: #042f2e;
|
|
50
|
+
--secondary: #115e59;
|
|
51
|
+
--secondary-foreground: #ccfbf1;
|
|
52
|
+
--muted: #115e59;
|
|
53
|
+
--muted-foreground: #99f6e4;
|
|
54
|
+
--accent: #5eead4;
|
|
55
|
+
--accent-foreground: #042f2e;
|
|
56
|
+
--destructive: #f87171;
|
|
57
|
+
--border: #115e59;
|
|
58
|
+
--input: #115e59;
|
|
59
|
+
--ring: #14b8a6;
|
|
60
|
+
--chart-1: #14b8a6;
|
|
61
|
+
--chart-2: #5eead4;
|
|
62
|
+
--chart-3: #99f6e4;
|
|
63
|
+
--chart-4: #f59e0b;
|
|
64
|
+
--chart-5: #f87171;
|
|
65
|
+
--sidebar: #022c2a;
|
|
66
|
+
--sidebar-foreground: #ccfbf1;
|
|
67
|
+
--sidebar-primary: #14b8a6;
|
|
68
|
+
--sidebar-primary-foreground: #042f2e;
|
|
69
|
+
--sidebar-accent: #115e59;
|
|
70
|
+
--sidebar-accent-foreground: #5eead4;
|
|
71
|
+
--sidebar-border: #115e59;
|
|
72
|
+
--sidebar-ring: #14b8a6;
|
|
73
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
/* ===================================================================== */
|
|
2
|
+
/* TOKYO theme */
|
|
3
|
+
/* Identity is the dark variant: Tokyo Night with neon accents. */
|
|
4
|
+
/* Light variant: muted navy/indigo desk-mode complement. */
|
|
5
|
+
/* ===================================================================== */
|
|
6
|
+
|
|
7
|
+
[data-theme="tokyo"] {
|
|
8
|
+
--background: #fafaff;
|
|
9
|
+
--foreground: #1a1b26;
|
|
10
|
+
--card: #ffffff;
|
|
11
|
+
--card-foreground: #1a1b26;
|
|
12
|
+
--popover: #ffffff;
|
|
13
|
+
--popover-foreground: #1a1b26;
|
|
14
|
+
--primary: #3d59a1;
|
|
15
|
+
--primary-foreground: #ffffff;
|
|
16
|
+
--secondary: #dde4f5;
|
|
17
|
+
--secondary-foreground: #3d59a1;
|
|
18
|
+
--muted: #eef0f8;
|
|
19
|
+
--muted-foreground: #565f89;
|
|
20
|
+
--accent: #c8c2f0;
|
|
21
|
+
--accent-foreground: #5a4a78;
|
|
22
|
+
--destructive: #c44a5e;
|
|
23
|
+
--border: #d6dae8;
|
|
24
|
+
--input: #d6dae8;
|
|
25
|
+
--ring: #3d59a1;
|
|
26
|
+
--chart-1: #3d59a1;
|
|
27
|
+
--chart-2: #5a4a78;
|
|
28
|
+
--chart-3: #587539;
|
|
29
|
+
--chart-4: #b45a25;
|
|
30
|
+
--chart-5: #c44a5e;
|
|
31
|
+
--radius: 0.5rem;
|
|
32
|
+
--sidebar: #f3f4fb;
|
|
33
|
+
--sidebar-foreground: #1a1b26;
|
|
34
|
+
--sidebar-primary: #3d59a1;
|
|
35
|
+
--sidebar-primary-foreground: #ffffff;
|
|
36
|
+
--sidebar-accent: #dde4f5;
|
|
37
|
+
--sidebar-accent-foreground: #3d59a1;
|
|
38
|
+
--sidebar-border: #d6dae8;
|
|
39
|
+
--sidebar-ring: #3d59a1;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
[data-theme="tokyo"].dark {
|
|
43
|
+
--background: #1a1b26;
|
|
44
|
+
--foreground: #c0caf5;
|
|
45
|
+
--card: #1f2335;
|
|
46
|
+
--card-foreground: #c0caf5;
|
|
47
|
+
--popover: #24283b;
|
|
48
|
+
--popover-foreground: #c0caf5;
|
|
49
|
+
--primary: #7aa2f7;
|
|
50
|
+
--primary-foreground: #1a1b26;
|
|
51
|
+
--secondary: #292e42;
|
|
52
|
+
--secondary-foreground: #c0caf5;
|
|
53
|
+
--muted: #292e42;
|
|
54
|
+
--muted-foreground: #a9b1d6;
|
|
55
|
+
--accent: #bb9af7;
|
|
56
|
+
--accent-foreground: #1a1b26;
|
|
57
|
+
--destructive: #f7768e;
|
|
58
|
+
--border: #3b4261;
|
|
59
|
+
--input: #292e42;
|
|
60
|
+
--ring: #7aa2f7;
|
|
61
|
+
--chart-1: #7aa2f7; /* blue */
|
|
62
|
+
--chart-2: #bb9af7; /* magenta */
|
|
63
|
+
--chart-3: #9ece6a; /* green */
|
|
64
|
+
--chart-4: #f7768e; /* red */
|
|
65
|
+
--chart-5: #ff9e64; /* orange */
|
|
66
|
+
--sidebar: #16161e;
|
|
67
|
+
--sidebar-foreground: #c0caf5;
|
|
68
|
+
--sidebar-primary: #7aa2f7;
|
|
69
|
+
--sidebar-primary-foreground: #1a1b26;
|
|
70
|
+
--sidebar-accent: #292e42;
|
|
71
|
+
--sidebar-accent-foreground: #7dcfff;
|
|
72
|
+
--sidebar-border: #3b4261;
|
|
73
|
+
--sidebar-ring: #7aa2f7;
|
|
74
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
/* ===================================================================== */
|
|
2
|
+
/* VAPOR theme */
|
|
3
|
+
/* Identity is the light variant: pastel lavender with vibrant accents. */
|
|
4
|
+
/* Dark variant: deep purple complement keeping saturated accents. */
|
|
5
|
+
/* ===================================================================== */
|
|
6
|
+
|
|
7
|
+
[data-theme="vapor"] {
|
|
8
|
+
--background: #f3effa;
|
|
9
|
+
--foreground: #1f1d2c;
|
|
10
|
+
--card: #fdfcff;
|
|
11
|
+
--card-foreground: #1f1d2c;
|
|
12
|
+
--popover: #fdfcff;
|
|
13
|
+
--popover-foreground: #1f1d2c;
|
|
14
|
+
--primary: #6d4cff;
|
|
15
|
+
--primary-foreground: #ffffff;
|
|
16
|
+
--secondary: #e3d9ff;
|
|
17
|
+
--secondary-foreground: #4a31c9;
|
|
18
|
+
--muted: #ebe3f7;
|
|
19
|
+
--muted-foreground: #5b537a;
|
|
20
|
+
--accent: #ffd8e9;
|
|
21
|
+
--accent-foreground: #b41858;
|
|
22
|
+
--destructive: #d92e6a;
|
|
23
|
+
--border: #d8cfeb;
|
|
24
|
+
--input: #d8cfeb;
|
|
25
|
+
--ring: #6d4cff;
|
|
26
|
+
--chart-1: #6d4cff; /* primary purple */
|
|
27
|
+
--chart-2: #ff4d8d; /* hot pink */
|
|
28
|
+
--chart-3: #00b894; /* teal/green */
|
|
29
|
+
--chart-4: #00a8e8; /* sky */
|
|
30
|
+
--chart-5: #f59e0b; /* amber */
|
|
31
|
+
--radius: 0.5rem;
|
|
32
|
+
--sidebar: #ece5f7;
|
|
33
|
+
--sidebar-foreground: #1f1d2c;
|
|
34
|
+
--sidebar-primary: #6d4cff;
|
|
35
|
+
--sidebar-primary-foreground: #ffffff;
|
|
36
|
+
--sidebar-accent: #e3d9ff;
|
|
37
|
+
--sidebar-accent-foreground: #4a31c9;
|
|
38
|
+
--sidebar-border: #d8cfeb;
|
|
39
|
+
--sidebar-ring: #6d4cff;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
[data-theme="vapor"].dark {
|
|
43
|
+
--background: #1a1426;
|
|
44
|
+
--foreground: #ede9f7;
|
|
45
|
+
--card: #241a35;
|
|
46
|
+
--card-foreground: #ede9f7;
|
|
47
|
+
--popover: #2b2042;
|
|
48
|
+
--popover-foreground: #ede9f7;
|
|
49
|
+
--primary: #a78bfa;
|
|
50
|
+
--primary-foreground: #1a1426;
|
|
51
|
+
--secondary: #3a2d5a;
|
|
52
|
+
--secondary-foreground: #ede9f7;
|
|
53
|
+
--muted: #2e2347;
|
|
54
|
+
--muted-foreground: #b9b0d4;
|
|
55
|
+
--accent: #f472b6;
|
|
56
|
+
--accent-foreground: #1a1426;
|
|
57
|
+
--destructive: #fb7185;
|
|
58
|
+
--border: #3f3162;
|
|
59
|
+
--input: #2e2347;
|
|
60
|
+
--ring: #a78bfa;
|
|
61
|
+
--chart-1: #a78bfa; /* lavender */
|
|
62
|
+
--chart-2: #f472b6; /* pink */
|
|
63
|
+
--chart-3: #34d399; /* mint */
|
|
64
|
+
--chart-4: #38bdf8; /* sky */
|
|
65
|
+
--chart-5: #fbbf24; /* amber */
|
|
66
|
+
--sidebar: #15101e;
|
|
67
|
+
--sidebar-foreground: #ede9f7;
|
|
68
|
+
--sidebar-primary: #a78bfa;
|
|
69
|
+
--sidebar-primary-foreground: #1a1426;
|
|
70
|
+
--sidebar-accent: #3a2d5a;
|
|
71
|
+
--sidebar-accent-foreground: #f472b6;
|
|
72
|
+
--sidebar-border: #3f3162;
|
|
73
|
+
--sidebar-ring: #a78bfa;
|
|
74
|
+
}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
/* ===================================================================== */
|
|
2
|
+
/* WARM SUN theme */
|
|
3
|
+
/* Energetic warm orange — friendly, approachable, lively. */
|
|
4
|
+
/* ===================================================================== */
|
|
5
|
+
|
|
6
|
+
[data-theme="warm-sun"] {
|
|
7
|
+
--background: #fffbf5;
|
|
8
|
+
--foreground: #1c1917;
|
|
9
|
+
--card: #fff7ed;
|
|
10
|
+
--card-foreground: #1c1917;
|
|
11
|
+
--popover: #ffffff;
|
|
12
|
+
--popover-foreground: #1c1917;
|
|
13
|
+
--primary: #c2410c;
|
|
14
|
+
--primary-foreground: #ffffff;
|
|
15
|
+
--secondary: #fed7aa;
|
|
16
|
+
--secondary-foreground: #7c2d12;
|
|
17
|
+
--muted: #fff7ed;
|
|
18
|
+
--muted-foreground: #57534e;
|
|
19
|
+
--accent: #fdba74;
|
|
20
|
+
--accent-foreground: #7c2d12;
|
|
21
|
+
--destructive: #b91c1c;
|
|
22
|
+
--border: #e7e5e4;
|
|
23
|
+
--input: #e7e5e4;
|
|
24
|
+
--ring: #c2410c;
|
|
25
|
+
--chart-1: #c2410c;
|
|
26
|
+
--chart-2: #fb923c;
|
|
27
|
+
--chart-3: #fdba74;
|
|
28
|
+
--chart-4: #0f766e;
|
|
29
|
+
--chart-5: #b91c1c;
|
|
30
|
+
--radius: 0.625rem;
|
|
31
|
+
--sidebar: #fff7ed;
|
|
32
|
+
--sidebar-foreground: #1c1917;
|
|
33
|
+
--sidebar-primary: #c2410c;
|
|
34
|
+
--sidebar-primary-foreground: #ffffff;
|
|
35
|
+
--sidebar-accent: #fed7aa;
|
|
36
|
+
--sidebar-accent-foreground: #7c2d12;
|
|
37
|
+
--sidebar-border: #e7e5e4;
|
|
38
|
+
--sidebar-ring: #c2410c;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
[data-theme="warm-sun"].dark {
|
|
42
|
+
--background: #1c1917;
|
|
43
|
+
--foreground: #fef3c7;
|
|
44
|
+
--card: #292524;
|
|
45
|
+
--card-foreground: #fef3c7;
|
|
46
|
+
--popover: #292524;
|
|
47
|
+
--popover-foreground: #fef3c7;
|
|
48
|
+
--primary: #fb923c;
|
|
49
|
+
--primary-foreground: #1c1917;
|
|
50
|
+
--secondary: #44403c;
|
|
51
|
+
--secondary-foreground: #fef3c7;
|
|
52
|
+
--muted: #44403c;
|
|
53
|
+
--muted-foreground: #d6d3d1;
|
|
54
|
+
--accent: #fdba74;
|
|
55
|
+
--accent-foreground: #1c1917;
|
|
56
|
+
--destructive: #f87171;
|
|
57
|
+
--border: #44403c;
|
|
58
|
+
--input: #44403c;
|
|
59
|
+
--ring: #fb923c;
|
|
60
|
+
--chart-1: #fb923c;
|
|
61
|
+
--chart-2: #fdba74;
|
|
62
|
+
--chart-3: #fed7aa;
|
|
63
|
+
--chart-4: #5eead4;
|
|
64
|
+
--chart-5: #f87171;
|
|
65
|
+
--sidebar: #1c1917;
|
|
66
|
+
--sidebar-foreground: #fef3c7;
|
|
67
|
+
--sidebar-primary: #fb923c;
|
|
68
|
+
--sidebar-primary-foreground: #1c1917;
|
|
69
|
+
--sidebar-accent: #44403c;
|
|
70
|
+
--sidebar-accent-foreground: #fdba74;
|
|
71
|
+
--sidebar-border: #44403c;
|
|
72
|
+
--sidebar-ring: #fb923c;
|
|
73
|
+
}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
/* ===================================================================== */
|
|
2
|
+
/* WOXOM theme */
|
|
3
|
+
/* Light variant: navy #1C4587 + soft indigo surface, professional. */
|
|
4
|
+
/* Dark variant: full Tokyo Night with neon accents. */
|
|
5
|
+
/* ===================================================================== */
|
|
6
|
+
|
|
7
|
+
[data-theme="woxom"] {
|
|
8
|
+
--background: #ffffff;
|
|
9
|
+
--foreground: #1c1c1c;
|
|
10
|
+
--card: #f5f5f5;
|
|
11
|
+
--card-foreground: #1c1c1c;
|
|
12
|
+
--popover: #ffffff;
|
|
13
|
+
--popover-foreground: #1c1c1c;
|
|
14
|
+
--primary: #1c4587;
|
|
15
|
+
--primary-foreground: #ffffff;
|
|
16
|
+
--secondary: #c9daf8;
|
|
17
|
+
--secondary-foreground: #1c4587;
|
|
18
|
+
--muted: #e8eef7;
|
|
19
|
+
--muted-foreground: #565f89;
|
|
20
|
+
--accent: #c9daf8;
|
|
21
|
+
--accent-foreground: #1c4587;
|
|
22
|
+
--destructive: #b00020;
|
|
23
|
+
--border: #e0e0e0;
|
|
24
|
+
--input: #e0e0e0;
|
|
25
|
+
--ring: #1c4587;
|
|
26
|
+
/* Chart colors — distinct, professional */
|
|
27
|
+
--chart-1: #1c4587;
|
|
28
|
+
--chart-2: #5c82c5;
|
|
29
|
+
--chart-3: #4caf50;
|
|
30
|
+
--chart-4: #fb8c00;
|
|
31
|
+
--chart-5: #b00020;
|
|
32
|
+
--radius: 0.5rem;
|
|
33
|
+
/* Sidebar — slightly tinted off-white */
|
|
34
|
+
--sidebar: #f5f5f5;
|
|
35
|
+
--sidebar-foreground: #1c1c1c;
|
|
36
|
+
--sidebar-primary: #1c4587;
|
|
37
|
+
--sidebar-primary-foreground: #ffffff;
|
|
38
|
+
--sidebar-accent: #c9daf8;
|
|
39
|
+
--sidebar-accent-foreground: #1c4587;
|
|
40
|
+
--sidebar-border: #e0e0e0;
|
|
41
|
+
--sidebar-ring: #1c4587;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
[data-theme="woxom"].dark {
|
|
45
|
+
/* Tokyo Night palette */
|
|
46
|
+
--background: #1a1b26;
|
|
47
|
+
--foreground: #c0caf5;
|
|
48
|
+
--card: #1f2335;
|
|
49
|
+
--card-foreground: #c0caf5;
|
|
50
|
+
--popover: #1f2335;
|
|
51
|
+
--popover-foreground: #c0caf5;
|
|
52
|
+
--primary: #7aa2f7;
|
|
53
|
+
--primary-foreground: #1a1b26;
|
|
54
|
+
--secondary: #292e42;
|
|
55
|
+
--secondary-foreground: #c0caf5;
|
|
56
|
+
--muted: #292e42;
|
|
57
|
+
--muted-foreground: #a9b1d6;
|
|
58
|
+
--accent: #bb9af7;
|
|
59
|
+
--accent-foreground: #1a1b26;
|
|
60
|
+
--destructive: #f7768e;
|
|
61
|
+
--border: #3b4261;
|
|
62
|
+
--input: #292e42;
|
|
63
|
+
--ring: #7aa2f7;
|
|
64
|
+
/* Chart colors — full Tokyo Night neon spectrum */
|
|
65
|
+
--chart-1: #7aa2f7; /* blue */
|
|
66
|
+
--chart-2: #bb9af7; /* magenta */
|
|
67
|
+
--chart-3: #9ece6a; /* green */
|
|
68
|
+
--chart-4: #ff9e64; /* orange */
|
|
69
|
+
--chart-5: #f7768e; /* red */
|
|
70
|
+
/* Sidebar */
|
|
71
|
+
--sidebar: #16161e;
|
|
72
|
+
--sidebar-foreground: #c0caf5;
|
|
73
|
+
--sidebar-primary: #7aa2f7;
|
|
74
|
+
--sidebar-primary-foreground: #1a1b26;
|
|
75
|
+
--sidebar-accent: #292e42;
|
|
76
|
+
--sidebar-accent-foreground: #7dcfff;
|
|
77
|
+
--sidebar-border: #3b4261;
|
|
78
|
+
--sidebar-ring: #7aa2f7;
|
|
79
|
+
}
|