-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
42 lines (42 loc) · 932 Bytes
/
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: {
50: '#F0F7FF',
100: '#E0EFFF',
200: '#B8DBFF',
300: '#8AC2FF',
400: '#5CA9FF',
500: '#2E90FF',
600: '#0066FF',
700: '#0047B3',
800: '#003380',
900: '#001F4D'
},
secondary: {
50: '#F5FDF9',
100: '#ECFAF4',
200: '#CFF2E3',
300: '#A3E4CA',
400: '#77D6B1',
500: '#4BC898',
600: '#2EA06E',
700: '#237854',
800: '#17503A',
900: '#0C2820'
}
},
fontFamily: {
sans: ['Montserrat', 'system-ui', 'sans-serif'],
display: ['Montserrat', 'system-ui', 'sans-serif']
}
}
},
plugins: [],
}