-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
40 lines (40 loc) · 946 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.html', './src/**/*.{js,ts,vue}'],
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif']
},
colors: {
primary: {
50: '#eff7ff',
100: '#daecff',
200: '#bedeff',
300: '#91c9ff',
400: '#5dacfd',
500: '#3789fa',
600: '#2169ef',
700: '#1954dc',
800: '#1b44b2',
900: '#1c3e8c',
950: '#162755'
},
secondary: {
50: '#fdf9e9',
100: '#fbf0c6',
200: '#f8df90',
300: '#f4c650',
400: '#efab20',
500: '#df9413',
600: '#c0710e',
700: '#9a500e',
800: '#7f4014',
900: '#6c3417',
950: '#3f1909'
}
}
}
},
plugins: [require('@tailwindcss/typography'), require('cabana-ui')]
}