-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
48 lines (45 loc) · 1.24 KB
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
sans: ['Segoe UI', 'ui-sans-serif', 'system-ui'],
serif: ['Segoe UI', 'ui-serif', 'Georgia', 'serif'],
mono: ['Segoe UI', 'ui-monospace', 'Menlo', 'monospace'],
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
'gradient-pattern-1': 'linear-gradient(115deg, #000000, #444444)',
'gradient-pattern-2': 'linear-gradient(115deg, #000000, #444444)',
},
colors: {
theme: {
DEFAULT: '#fb991c',
hover: '#d48119',
},
light: {
DEFAULT: '#f4f4f4',
hover: '#e0e0e0',
},
darkest: '#292432',
lightest: '#ffffff',
// text
primary: '#161616',
secondary: '#4b5563',
// background
dark: '#191f33',
mid: '#2e3447',
},
container: {
center: true,
padding: '1rem',
screens: {
sm: '1400px',
},
},
},
},
plugins: [],
}