-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathtailwind.config.js
More file actions
39 lines (39 loc) · 1.15 KB
/
tailwind.config.js
File metadata and controls
39 lines (39 loc) · 1.15 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"./app/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./packages/studio/src/**/*.{js,jsx}",
],
theme: {
extend: {
colors: {
primary: {
DEFAULT: '#d9ff00',
hover: '#c4e600',
},
'app-bg': '#050505',
'panel-bg': '#0a0a0a',
'card-bg': '#141414',
secondary: '#a1a1aa',
muted: '#52525b',
},
fontFamily: {
sans: ['Inter', 'system-ui', '-apple-system', 'sans-serif'],
},
borderRadius: {
'xl': '1rem',
'2xl': '1.5rem',
'3xl': '2rem',
},
boxShadow: {
'glow': '0 0 20px rgba(217, 255, 0, 0.4)',
'glow-accent': '0 0 20px rgba(168, 85, 247, 0.4)',
'3xl': '0 35px 60px -15px rgba(0, 0, 0, 0.8)',
}
},
},
plugins: [],
}