-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtailwind.config.js
More file actions
36 lines (35 loc) · 889 Bytes
/
tailwind.config.js
File metadata and controls
36 lines (35 loc) · 889 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
31
32
33
34
35
36
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{vue,jsx,tsx}'],
theme: {
extend: {
colors: {
lighterGray: '#BDBDBD',
lightGray: '#929292',
gray: '#686868',
darkGray: '#515151',
darkerGray: '#424242',
darkestGray: '#313131',
lightGold: '#E8C273',
gold: '#C29A51',
darkGold: '#9C844C',
darkerGold: '#876F39',
lightSuccess: '#B7D7A8',
success: '#FFFFFF',
warning: '#FFE598',
danger: '#FF7A7A',
purple: '#D7B2F0',
darkPurple: '#764D91',
blue: '#A0C5E8',
darkBlue: '#878FD2',
darkerBlue: '#273086',
cardBg: '#FAFAFA',
errorColor: '#D86D6E',
},
fontFamily: {
montserrat: ['montserrat', 'sans-serif'],
},
},
},
plugins: [],
};