mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-08-13 13:50:35 +00:00
42 lines
919 B
TypeScript
42 lines
919 B
TypeScript
import { base, theme } from './base';
|
|
|
|
export const lightTheme = theme({
|
|
name: 'light',
|
|
scheme: 'light',
|
|
colors: {
|
|
primary: 'rgb(40, 156, 255)',
|
|
primaryContent: '#fff',
|
|
|
|
secondary: base.sky[400],
|
|
secondaryFocus: base.sky[500],
|
|
secondaryContent: '#fff',
|
|
|
|
accent: 'rgb(255, 105, 11)',
|
|
accentContent: '#fff',
|
|
|
|
neutral: base.slate[600],
|
|
neutralFocus: base.slate[800],
|
|
neutralContent: base.island[100],
|
|
|
|
base100: '#fff',
|
|
base200: base.slate[100],
|
|
base300: base.slate[200],
|
|
base400: base.slate[300],
|
|
baseContent: base.slate[900],
|
|
|
|
info: base.navy[500],
|
|
infoContent: base.navy[50],
|
|
|
|
success: base.emerald[600],
|
|
successContent: base.emerald[50],
|
|
|
|
warning: base.amber[400],
|
|
warningContent: base.amber[50],
|
|
|
|
error: base.rose[600],
|
|
errorContent: base.rose[50],
|
|
|
|
link: base.blue[800],
|
|
linkVisited: base.purple[800],
|
|
},
|
|
});
|