-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
45 lines (44 loc) · 1.12 KB
/
tailwind.config.js
File metadata and controls
45 lines (44 loc) · 1.12 KB
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}"
],
theme: {
extend: {
colors: {
"gold-900": "#7c6e4b",
"gold-800": "#918158",
"gold-700": "#a69364",
"gold-600": "#baa671",
"gold-500": '#cfb87d',
"gold-400": '#d4bf8a',
"gold-300": '#d9c697',
"gold-200": '#ddcda4',
"gold-100": '#e2d4b1',
"green-900": "#577c5a",
"green-800": "#669169",
"green-700": "#74a678",
"green-600": "#83ba87",
"green-500": '#91cf96',
"green-400": '#9cd4a1',
"green-300": '#a7d9ab',
"green-200": '#b2ddb6',
"green-100": '#bde2c0',
"cancel-100": "#ff8f66",
"cancel-200": "#ff7d4d",
"cancel-500": "#ff4500",
"cancel-900": "#992900",
"temp-500": "#ffa726",
"temp-900": "#996417",
},
keyframes: {
pan: {
from: { transform: 'translateX(5%) scale(1.5)' },
to: { transform: 'translateX(-5%) scale(1.5)' }
}
}
},
},
plugins: [],
}