-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
68 lines (68 loc) · 1.69 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
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors')
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
colors: {
"tan": "#e0dad1",
"grayscale": {
"50": "rgb(247, 247, 247)",
"100": "rgb(216, 216, 216)",
"200": "rgb(223, 223, 223)",
"300": "rgb(153, 153, 153)",
"400": "rgb(191, 191, 191)",
"500": "rgb(135, 135, 135)",
"600": "rgb(109, 109, 109)",
"700": "rgb(95, 95, 95)",
"800": "rgb(74, 74, 74)",
"900": "rgb(61, 61, 61)"
},
'blue-steel': {
'50': '#f4f5fb',
'100': '#e8ebf6',
'200': '#ccd4eb',
'300': '#a0b1d9',
'400': '#5d7abd',
'500': '#4a67ad',
'600': '#385091',
'700': '#2e4076',
'800': '#2a3962',
'900': '#273253',
'950': '#1a2037',
},
black: colors.black,
white: colors.white,
gray: colors.gray,
emerald: colors.emerald,
indigo: colors.indigo,
yellow: colors.yellow,
pink: colors.pink,
orange: colors.orange,
fuschia: colors.fuchsia,
},
extend: {
transitionProperty: {
'height': 'height',
},
animation: {
text: 'text 5s ease infinite',
},
keyframes: {
text: {
'0%, 100%': {
'background-size': '200% 200%',
'background-position': 'left center',
},
'50%': {
'background-size': '200% 200%',
'background-position': 'right center',
},
},
},
},
},
}