-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
41 lines (41 loc) · 895 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
41 lines (41 loc) · 895 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
29
30
31
32
33
34
35
36
37
38
39
40
41
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
},
colors: {
bg: {
app: '#0d0f14',
sidebar: '#11141a',
panel: '#151922',
table: '#171b24',
elevated: '#1b202b',
hover: '#202635',
},
border: {
subtle: '#232838',
strong: '#2c3245',
},
text: {
primary: '#e6e8ee',
secondary: '#b7bcc9',
muted: '#7d8496',
disabled: '#51586a',
},
accent: {
DEFAULT: '#5b7cfa',
hover: '#6a89ff',
muted: 'rgba(91,124,250,0.1)',
border: 'rgba(91,124,250,0.2)',
},
},
},
},
plugins: [],
}