-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
51 lines (49 loc) · 1.16 KB
/
tailwind.config.ts
File metadata and controls
51 lines (49 loc) · 1.16 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
43
44
45
46
47
48
49
50
51
import type { Config } from 'tailwindcss';
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
void: {
50: '#f3f1ff',
100: '#ebe5ff',
200: '#d9ceff',
300: '#bea6ff',
400: '#9f75ff',
500: '#843dff',
600: '#7916ff',
700: '#6b04fd',
800: '#5a03d5',
900: '#4b05ad',
950: '#2c0076',
},
dominion: {
primary: '#4A90D9',
secondary: '#2E5A8B',
accent: '#7CB9E8',
},
synthesis: {
primary: '#9B59B6',
secondary: '#6C3483',
accent: '#D7BDE2',
},
swarm: {
primary: '#8B4513',
secondary: '#5D2E0C',
accent: '#DEB887',
},
},
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
display: ['Orbitron', 'system-ui', 'sans-serif'],
mono: ['JetBrains Mono', 'monospace'],
},
},
},
plugins: [],
};
export default config;