This repository was archived by the owner on Feb 28, 2026. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +21
-0
lines changed
Expand file tree Collapse file tree 3 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff 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
89export type BuiltinBasicThemeId = ( typeof BUILTIN_BASIC_THEME_IDS ) [ number ] ;
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ import './basic/aurora.css';
1313import './basic/ember.css' ;
1414import './basic/lagoon.css' ;
1515import './basic/canyon.css' ;
16+ import './basic/arctic-moss.css' ;
1617
1718export 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
6677export function listBasicThemes ( ) : BasicThemeMeta [ ] {
You can’t perform that action at this time.
0 commit comments