mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-08-13 15:30:36 +00:00
44 lines
987 B
TypeScript
44 lines
987 B
TypeScript
import { base, theme } from './base';
|
|
|
|
export const darkTheme = theme({
|
|
name: 'dark',
|
|
scheme: 'dark',
|
|
colors: {
|
|
primary: base.navy[500],
|
|
primaryFocus: base.navy[400],
|
|
primaryContent: '#fff',
|
|
|
|
secondary: base.island[500],
|
|
secondaryFocus: base.island[400],
|
|
secondaryContent: '#fff',
|
|
|
|
accent: base.cocoa[500],
|
|
accentFocus: base.cocoa[400],
|
|
accentContent: '#fff',
|
|
|
|
neutral: base.zinc[400],
|
|
neutralFocus: base.zinc[300],
|
|
neutralContent: base.zinc[300],
|
|
|
|
base100: base.zinc[900],
|
|
base200: base.zinc[800],
|
|
base300: base.zinc[700],
|
|
base400: base.zinc[600],
|
|
baseContent: base.island[50],
|
|
|
|
info: base.navy[600],
|
|
infoContent: base.navy[100],
|
|
|
|
success: base.green[600],
|
|
successContent: base.green[100],
|
|
|
|
warning: base.amber[600],
|
|
warningContent: base.amber[100],
|
|
|
|
error: base.cerise2[600],
|
|
errorContent: base.cerise2[100],
|
|
|
|
link: base.sky[500],
|
|
linkVisited: base.purple[400],
|
|
},
|
|
});
|