-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
28 lines (28 loc) · 814 Bytes
/
tailwind.config.js
File metadata and controls
28 lines (28 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/renderer/**/*.{ts,tsx,html}', './src/main/shared/**/*.ts'],
theme: {
extend: {
fontFamily: {
mono: ['"JetBrains Mono"', '"Fira Code"', 'monospace'],
sans: ['"DM Sans"', 'system-ui', 'sans-serif'],
},
colors: {
accent: '#4ade80',
'base-950': '#08090d',
'base-900': '#0d0f14',
'base-800': '#11141b',
'surface-raised': '#1a1d26',
'surface-border': '#242736',
'text-primary': '#e8eaf2',
'text-secondary': '#b0b4c8',
'text-muted': '#6b7094',
'console-error': '#f87171',
'console-warn': '#fbbf24',
'console-input': '#60a5fa',
'console-system': '#6b7094',
},
},
},
plugins: [],
};