-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.js
64 lines (63 loc) · 1.43 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
const { fontFamily } = require('tailwindcss/defaultTheme')
/** @type {import('tailwindcss').Config} */
module.exports = {
mode: 'jit',
content: [
'./src/app/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
'./src/lib/**/*.{js,ts,jsx,tsx}',
],
// content: [
// './app/**/*.{js,ts,jsx,tsx}',
// './components/**/*.{js,ts,jsx,tsx}',
// './lib/**/*.{js,ts,jsx,tsx}',
// ],
theme: {
container: {
center: true,
padding: '1.5rem',
screens: {
'2xl': '1440px',
},
},
extend: {
fontFamily: {
sans: ['var(--font-inter)', ...fontFamily.sans],
},
colors: {
black: {
DEFAULT: '#38383a',
},
primary: {
DEFAULT: '#005b79',
light: '#f1f5fd',
},
secondary: {
DEFAULT: '#aab315',
},
hover: {
DEFAULT: '#E0F2E8',
},
active: {
DEFAULT: 'var(--active-color-background)',
border: 'var(--active-color-border)',
},
matisse: {
DEFAULT: '#1B6AAA',
50: '#8FC3ED',
100: '#7EBAEA',
200: '#5BA7E5',
300: '#3794DF',
400: '#2180CD',
500: '#1B6AAA',
600: '#134C7A',
700: '#0C2E49',
800: '#040F19',
900: '#000000',
},
'button-color': 'var(--button-color)',
},
},
},
plugins: [],
}