-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
30 lines (30 loc) · 840 Bytes
/
tailwind.config.js
File metadata and controls
30 lines (30 loc) · 840 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
sans: ['var(--font-sans)'],
mono: ['var(--font-mono)']
},
fontWeight: {
'normal': 'var(--font-weight-normal)',
'medium': 'var(--font-weight-medium)',
'semibold': 'var(--font-weight-semibold)'
},
colors: {
nv: {
primary: '#4B3F72',
secondary: '#A786DF',
accent: '#00B8A9',
lightText: '#2D2D2D'
}
},
backgroundImage: {
'nv-gradient-dark': 'linear-gradient(135deg, #1a1630 0%, #4B3F72 45%, #0c3f3b 100%)',
'nv-gradient-light': 'linear-gradient(135deg, #ffffff 0%, #f7f3ff 50%, #ecfffd 100%)'
}
},
},
plugins: [],
};