Skip to content
This repository was archived by the owner on Feb 28, 2026. It is now read-only.

Commit 792541e

Browse files
committed
Arctic Moss theme
1 parent 4a95a56 commit 792541e

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
:root[data-theme-id='nuclear:arctic-moss'] {
2+
--background: oklch(0.97 0.008 200);
3+
--primary: oklch(0.7 0.12 175);
4+
}
5+
6+
:root[data-theme-id='nuclear:arctic-moss'][data-theme='dark'] {
7+
--background: oklch(0.22 0.015 200);
8+
--primary: oklch(0.7 0.12 175);
9+
}

packages/themes/src/basic/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ export const BUILTIN_BASIC_THEME_IDS = [
33
'nuclear:ember',
44
'nuclear:lagoon',
55
'nuclear:canyon',
6+
'nuclear:arctic-moss',
67
] as const;
78

89
export type BuiltinBasicThemeId = (typeof BUILTIN_BASIC_THEME_IDS)[number];

packages/themes/src/index.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import './basic/aurora.css';
1313
import './basic/ember.css';
1414
import './basic/lagoon.css';
1515
import './basic/canyon.css';
16+
import './basic/arctic-moss.css';
1617

1718
export type BasicThemeMeta = {
1819
id: string;
@@ -61,6 +62,16 @@ const BUILT_INS: BasicThemeMeta[] = [
6162
'oklch(0.36 0.03 30)',
6263
],
6364
},
65+
{
66+
id: 'nuclear:arctic-moss',
67+
name: 'Arctic Moss',
68+
palette: [
69+
'oklch(0.70 0.12 175)',
70+
'oklch(0.97 0.008 200)',
71+
'oklch(0.70 0.12 175)',
72+
'oklch(0.22 0.015 200)',
73+
],
74+
},
6475
];
6576

6677
export function listBasicThemes(): BasicThemeMeta[] {

0 commit comments

Comments
 (0)