-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathtailwind.config.js
More file actions
42 lines (42 loc) · 1.42 KB
/
Copy pathtailwind.config.js
File metadata and controls
42 lines (42 loc) · 1.42 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
40
41
42
/** @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}",
"./packages/Open-AI-Design-Agent/packages/design-agent/src/**/*.{js,jsx}",
"./packages/Open-Poe-AI/packages/agents/src/**/*.{js,jsx,ts,tsx}",
"./packages/Vibe-Workflow/packages/workflow-builder/src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
primary: {
DEFAULT: '#d9ff3f',
hover: '#c2e800',
},
'app-bg': '#060707',
'panel-bg': '#0d0e0d',
'card-bg': '#121312',
secondary: '#a1a1aa',
muted: '#52525b',
},
fontFamily: {
sans: ['var(--font-space)', 'Space Grotesk', 'Inter', 'system-ui', '-apple-system', 'sans-serif'],
},
borderRadius: {
'xl': '1rem',
'2xl': '1.5rem',
'3xl': '2rem',
},
boxShadow: {
'glow': '0 0 20px rgba(217, 255, 63, 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: [],
}