-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
84 lines (81 loc) · 2.1 KB
/
tailwind.config.ts
File metadata and controls
84 lines (81 loc) · 2.1 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
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
import type {Config} from 'tailwindcss';
import plugin from 'tailwindcss/plugin';
export default {
content: [
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
black: '#000000',
semiBlack: '#1C1C1C',
grey1: '#333333',
grey2: '#606060',
grey3: '#8D8D8D',
grey4: '#BBBBBB',
grey5: '#E8E8E8',
semiWhite: '#F4F4F4',
white: '#FFFFFF',
dark1: '#3765D6',
dark2: '#4F7DEE',
main: '#7BA1FF',
light1: '#A7C0FF',
light2: '#D7E2FF',
light3: '#E3EBFF',
deepBlue: '#273963',
page1anibg: '#EBF0FF',
page3divbg: '#E5ECFF',
page3divborder: '#CBD9FF',
page6bg: '#0E1D3E',
page6subtitle: '#2A3349',
usermainbg: '#A0BBFF4A',
usermainbg2: '#17347B',
usermainoverlay: 'rgba(109, 124, 167, 0.4)',
yellow: '#FEE500',
page5roundbg: '#4D67A9',
communityGrey: '#8E8E8E',
},
keyframes: {
loop: {
'0%': {transform: 'translateX(0)'},
'100%': {transform: 'translateX(-100%)'},
},
fadeIn: {
'0%': {opacity: '0', transform: 'translateY(-2vw)'},
'100%': {opacity: '1', transform: 'translateY(0)'},
},
scale: {
'0%, 100%': {transform: 'scale(1)'},
'50%': {transform: 'scale(1.1)'},
},
},
animation: {
loop: 'loop 20s linear infinite',
fadeIn: 'fadeIn 0.5s ease-out forwards',
'custom-scale': 'scale 1s ease-in-out infinite',
},
fontFamily: {
pretendard: ['var(--font-pretendard)'],
},
},
variants: {
extend: {
filter: ['responsive', 'hover', 'focus'],
},
},
},
plugins: [
plugin(function ({addUtilities}) {
addUtilities(
{
'.gpu-hint': {
transform: 'translateZ(0)',
willChange: 'transform',
},
},
{respectPrefix: false, respectImportant: false},
);
}),
],
} satisfies Config;