-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
95 lines (93 loc) · 2.4 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
84
85
86
87
88
89
90
91
92
93
94
95
/** @type {import('tailwindcss').Config} */
const { nextui } = require('@nextui-org/react')
const plugin = require('tailwindcss/plugin')
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
'./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
cream: '#FCF8E8',
lemon: '#FDFFAB',
baige: {
300: 'FFF8E3',
500: '#F4EAD5',
700: '#F1E0AC',
},
grayBaige: {
400: '#F0EBE3',
600: '#E4DCCF',
},
pastelYellow: {
200: '#FDFFCD',
300: '#FFF6BD',
500: '#F5F0BB',
700: '#F1EB90',
},
coral: {
200: '#FFD4B2',
400: '#ECB390',
500: '#FF9A76',
600: '#DF7861',
},
salmon: {
400: '#F7C5A8',
500: '#FFB996',
},
sage: {
300: '#D9EDBF',
400: '#C4DFAA',
500: '#90C8AC',
600: '#94B49F',
650: '#85A28F',
700: '#678983',
750: '#5C7B75',
800: '#526d68',
850: '#485f5b',
900: '#3d524e',
},
olive: {
200: '#DAE2B6',
300: '#CCD6A6',
700: '#9FBB73',
},
},
textShadow: {
sm: '0 1px 2px var(--tw-shadow-color)',
DEFAULT: '0 2px 4px var(--tw-shadow-color)',
lg: '0 8px 16px var(--tw-shadow-color)',
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
fontFamily: {
omyu: ['omyu_pretty', 'sans-serif'],
suite: ['SUITE-Regular', 'sans-serif'],
lotteria: ['LOTTERIACHAB', 'sans-serif'],
giants: ['Giants-Inline', 'sans-serif'],
jeju: ['EF_jejudoldam', 'sans-serif'],
jalnan: ['JalnanGothic', 'sans-serif'],
pretendard: ['Pretendard-Regular', 'sans-serif'],
},
},
},
plugins: [
nextui(),
plugin(function ({ matchUtilities, theme }) {
matchUtilities(
{
'text-shadow': (value) => ({
textShadow: value,
}),
},
{ values: theme('textShadow') }
)
}),
],
}