-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
63 lines (62 loc) · 1.46 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
/** @type {import('tailwindcss').Config} */
import { KEEPER_HEIGHT, KEEPER_COLOR, KEEPER_WIDTH } from './src/constants/keeperTheme';
export const content = ['./src/**/*.{js,jsx,ts,tsx}'];
export const theme = {
extend: {
colors: {
mainBlack: KEEPER_COLOR.mainBlack,
middleBlack: KEEPER_COLOR.middleBlack,
subBlack: KEEPER_COLOR.subBlack,
pointBlue: KEEPER_COLOR.pointBlue,
subGray: KEEPER_COLOR.subGray,
subRed: KEEPER_COLOR.subRed,
subOrange: KEEPER_COLOR.subOrange,
},
fontFamily: {
base: 'IBM Plex Sans KR, system-ui, sans-serif',
orbitron: '"Orbitron", sans-serif',
},
fontSize: {
h1: '28px',
h3: '20px',
paragraph: '14px',
small: '10px',
},
spacing: {
header: KEEPER_HEIGHT.header.sm,
sidebar: KEEPER_WIDTH.sidebar,
},
maxWidth: {
container: KEEPER_WIDTH.container,
},
minWidth: {
sidebar: KEEPER_WIDTH.sidebar,
},
backgroundImage: {
galaxy: "url('/public/img/background_galaxy.png')",
},
keyframes: {
typing: {
'0%': {
width: '0%',
visibility: 'hidden',
},
'100%': {
width: '100%',
},
},
blink: {
'50%': {
borderColor: 'transparent',
},
'100%': {
borderColor: 'white',
},
},
},
animation: {
typing: 'typing 2s steps(25), blink',
},
},
};
export const plugins = [];