-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
32 lines (32 loc) · 912 Bytes
/
tailwind.config.js
File metadata and controls
32 lines (32 loc) · 912 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{ts,tsx}'],
theme: {
extend: {
fontFamily: {
sans: ['-apple-system', 'BlinkMacSystemFont', '"Segoe UI"', 'sans-serif'],
},
colors: {
gh: {
bg: 'var(--gh-bg)',
card: 'var(--gh-card)',
badge: 'var(--gh-badge)',
border: 'var(--gh-border)',
'text-primary': 'var(--gh-text-primary)',
'text-secondary': 'var(--gh-text-secondary)',
accent: 'var(--gh-accent)',
'accent-hover': 'var(--gh-accent-hover)',
danger: 'var(--gh-danger)',
},
contrib: {
none: 'var(--contrib-none)',
q1: 'var(--contrib-q1)',
q2: 'var(--contrib-q2)',
q3: 'var(--contrib-q3)',
q4: 'var(--contrib-q4)',
},
},
},
},
plugins: [],
}