-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
43 lines (41 loc) · 1.03 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
/** @type {import('tailwindcss').Config} */
// eslint-disable-next-line @typescript-eslint/no-var-requires
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}'
],
theme: {
extend: {
colors: {
primary: '#111827',
secondary: '#6D7280',
primaryBg: '#FFFFFF',
secondaryBg: '#EAF2FF',
tertiaryBg: '#F3F4F6',
linkText: '#0043FF',
linkDisabled: '#4B5563',
accent: '#6600CC',
disabled: '#C5C5C5',
// find a way to describe better these colors
inputUnselected: '#E0E0E0',
inputSelected: '#0570DE',
placeholderUnselected: '#A5ACB8',
},
fontFamily: {
sans: ['Inter var', ...defaultTheme.fontFamily.sans]
},
lineHeight: {
h1: '98px',
h2: '24.2px',
h3: '20px'
},
screens: {
xlDashboard: '1350px',
lgDashboard: '1280px'
}
}
},
plugins: []
}