-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
33 lines (33 loc) · 831 Bytes
/
tailwind.config.js
File metadata and controls
33 lines (33 loc) · 831 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
33
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
github: {
bg: '#0d1117',
'bg-secondary': '#161b22',
'bg-tertiary': '#21262d',
border: '#30363d',
'border-muted': '#21262d',
text: '#f0f6fc',
'text-secondary': '#8b949e',
'text-muted': '#656d76',
accent: '#238636',
'accent-hover': '#2ea043',
danger: '#da3633',
'danger-hover': '#dc2626',
blue: '#2f81f7',
'blue-hover': '#1f6feb',
}
},
fontFamily: {
'mono': ['ui-monospace', 'SFMono-Regular', 'Consolas', 'Liberation Mono', 'Menlo', 'monospace'],
}
},
},
plugins: [],
}