-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
60 lines (60 loc) · 1.63 KB
/
tailwind.config.js
File metadata and controls
60 lines (60 loc) · 1.63 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
52
53
54
55
56
57
58
59
60
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
extend: {
colors: {
primary: {
50: '#e6f7ff',
100: '#b3e7ff',
200: '#80d4ff',
300: '#4dc1ff',
400: '#26b3ff',
500: '#00a5ff',
600: '#0091e6',
700: '#007acc',
800: '#0062a3',
900: '#004a7a',
},
dark: {
bg: '#0d1117',
surface: '#161b22',
tertiary: '#21262d',
border: '#30363d',
text: '#c9d1d9',
muted: '#8b949e',
},
light: {
bg: '#ffffff',
surface: '#f6f8fa',
tertiary: '#eaeef2',
border: '#d0d7de',
text: '#24292f',
muted: '#656d76',
},
// Data type colors
dtype: {
int: '#6cb6ff', // blue for INT types
varchar: '#7ee787', // green for VARCHAR/TEXT
char: '#79c0ff', // cyan for CHAR
datetime: '#d2a8ff', // purple for DATE/TIME
boolean: '#ff7b72', // red/coral for BOOLEAN
decimal: '#ffa657', // orange for DECIMAL/FLOAT
blob: '#a5d6ff', // light blue for BLOB/BINARY
json: '#f778ba', // pink for JSON
enum: '#cea5fb', // violet for ENUM
},
accent: {
pink: '#f778ba',
green: '#3fb950',
},
},
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
mono: ['JetBrains Mono', 'Fira Code', 'monospace'],
},
},
},
plugins: [],
};