-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
84 lines (81 loc) · 1.93 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors')
export default {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'text': { // hand-choosen
50: '#FFF8F6',
100: '#FFF2ED',
200: '#F7E6E0',
300: '#E4D1C8',
400: '#CFBAB0',
500: '#B8A599',
600: '#9D8E83',
700: '#7D7168',
800: '#5D544D',
900: '#403B36',
950: '#2C2925',
},
'background': { // hand-choosen
50: '#FFF8F6',
100: '#FFF2ED',
200: '#F7E6E0',
300: '#E4D1C8',
400: '#CFBAB0',
500: '#B8A599',
600: '#9D8E83',
700: '#7D7168',
800: '#5D544D',
900: '#403B36',
950: '#2C2925',
},
'primary-button': { // hand-choosen
DEFAULT: '#FFD470',
50: '#FFF6E1',
100: '#FFEFCA',
200: '#FFE8B4',
300: '#FFE29D',
400: '#FFDB87',
500: '#FFD470',
600: '#FFCD5A',
700: '#FFC743',
800: '#FFC02D',
900: '#FFB916',
950: '#FFB300',
},
'secondary-button': colors.slate,
'accent': colors.amber,
/* 'secondary-button': {
DEFAULT: '#e2e5e9',
100: '#d8dade',
200: '#ced0d3',
300: '#c4c6c8',
400: '#babbbe',
500: '#b0b1b3',
600: '#a6a7a9',
700: '#9c9d9e',
800: '#939394',
900: '#898a8a',
},
'accent': {
DEFAULT: '#f8d841',
100: '#fdf8df',
200: '#fdf4cf',
300: '#fcf1bf',
400: '#fbedae',
500: '#fbe99c',
600: '#fae589',
700: '#f9e175',
800: '#f9dc5e',
900: '#f8d841',
}, */
}
}
},
plugins: [],
}