37 lines
554 B
TypeScript
37 lines
554 B
TypeScript
export default {
|
|
colors: {
|
|
bg: '#0a0a0a',
|
|
bgElevated: '#111',
|
|
bgHover: '#1a1a1a',
|
|
|
|
fg: '#00ff00',
|
|
fgMuted: '#888',
|
|
fgDim: '#444',
|
|
|
|
border: '#222',
|
|
borderActive: '#00ff00',
|
|
|
|
accent: '#00ff00',
|
|
accentDim: '#008800',
|
|
},
|
|
|
|
fonts: {
|
|
mono: "'Monaco', 'Menlo', 'Consolas', monospace",
|
|
sans: "-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif",
|
|
},
|
|
|
|
spacing: {
|
|
xs: 8,
|
|
sm: 12,
|
|
md: 16,
|
|
lg: 24,
|
|
xl: 32,
|
|
xxl: 48,
|
|
},
|
|
|
|
radius: {
|
|
sm: 4,
|
|
md: 8,
|
|
lg: 12,
|
|
}
|
|
} |