-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
78 lines (76 loc) · 1.75 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
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors');
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
boxShadow: {
sm: '0 0.25rem 0.5rem rgba(0, 0, 0, 0.05);',
DEFAULT: '0 0.25rem 1.25rem rgba(0, 0, 0, 0.1);',
lg: '0 0.25rem 1.75rem rgba(0, 0, 0, 0.15);',
none: 'none',
},
colors: {
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
blue: {
50: '#EBF6FF',
500: '#006CD0',
700: '#0055A3',
},
emerald: {
400: '#6C9086',
500: '#3F6157',
600: '#304B43',
700: '#233832',
},
gray: {
100: '#F8FAF8',
200: '#EDF1ED',
300: '#D1D8D1',
400: '#B8BEB8',
500: '#7F867F',
600: '#59625F',
700: '#3E4442',
},
green: {
50: '#EEFAF6',
500: '#08AE7C',
700: '#007753',
},
indigo: colors.indigo,
red: {
50: '#FFF1F3',
500: '#D0003E',
700: '#C1003A',
},
white: colors.white,
yellow: colors.yellow,
},
extend: {
animation: {
'reverse-spin': 'reverse-spin 1s linear infinite',
},
keyframes: {
'reverse-spin': {
from: {
transform: 'rotate(360deg)',
},
},
},
boxShadow: {
glow: '0 0 1rem rgba(0, 0, 0, 0.3)',
'glow-lg': '0 0 1.5rem rgba(0, 0, 0, 0.3)',
},
fontFamily: {
sans: ['Inter var', ...defaultTheme.fontFamily.sans],
},
},
},
plugins: [],
}