-
-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathtailwind.config.js
More file actions
26 lines (26 loc) · 723 Bytes
/
tailwind.config.js
File metadata and controls
26 lines (26 loc) · 723 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/renderer/**/*.{js,ts,jsx,tsx,html}',
],
theme: {
extend: {
colors: {
white: 'rgb(var(--on-surface-rgb) / <alpha-value>)',
black: 'rgb(var(--backdrop-rgb) / <alpha-value>)',
sc: {
bg: 'var(--bg-primary)',
card: 'var(--card-bg)',
input: 'var(--input-bg)',
border: 'var(--border-primary)',
accent: 'var(--accent)',
'accent-hover': 'var(--accent-hover)',
text: 'var(--text-primary)',
'text-secondary': 'var(--text-secondary)',
'text-muted': 'var(--text-muted)',
},
},
},
},
plugins: [],
};