-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
33 lines (31 loc) · 1.01 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
colors: {
'primaryColor': '#3758F9', // blue
'primaryColorHover': '#1B44C8', // darker blue
'primaryColorOpacity': '#EFF2FF', // blue with opacity
'green': '#13C296',
'greenHover': '#0BB489',
'greenOpacity': '#EDFBF7',
'primaryText': '#637381', // placeholder color, greyish
'secondaryText': '#8899A8', // light grey
'stroke': '#DFE4EA', // lightest grey, border for input areas
'dark': '#111928', // headers/labels
'white': '#FFFFFF',
'background': '#F3F4F6', // background for components
'danger': '#F23030', // red
'dangerHover': '#E10E0E', // darker red
'whiteHover': '#F9FAFB',
'warning': '#FBBF24',
'warningOpacity': '#FFFBEB',
'warningHover': '#F59E0B',
'purple': '#9B51E0',
'purpleHover': '#C814F6',
'purpleOpacity': '#F7F1FD',
},
extend: {},
},
plugins: [],
};