This repository has been archived by the owner on May 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
89 lines (88 loc) · 2.09 KB
/
tailwind.config.ts
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
/* eslint-disable @typescript-eslint/naming-convention */
import forms from '@tailwindcss/forms'
import typography from '@tailwindcss/typography'
import type { Config } from 'tailwindcss'
import colors from 'tailwindcss/colors'
import defaultTheme from 'tailwindcss/defaultTheme'
export default {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
colors: {
white: colors.white,
black: colors.black,
transparent: colors.transparent,
current: colors.current,
default: '#212529',
yellow: '#f3ec53',
green: {
DEFAULT: '#8dc63f',
dark: '#2d4e00'
},
gray: {
light: '#f1f3f6',
DEFAULT: '#cdcdcd',
dark: '#7c7a7b'
},
blue: {
DEFAULT: '#2279fd',
dark: '#002d71'
},
red: '#ff6663',
text: {
title: '#7c7a7b',
subtitle: '#173747',
DEFAULT: '#212529'
},
slate: {
50: '#eceff0',
100: '#dadfe2',
200: '#b5bfc4',
300: '#8f9fa7',
400: '#6a7f89',
500: '#455f6c',
600: '#2e4b59',
700: '#173747', // Basis (Problem.vue)
800: '#122c39',
900: '#0e212b'
},
level: {
1: '#CC99C9',
2: '#9EC1CF',
3: '#A1F2C2',
4: '#B8FF81',
5: '#F3EC53',
6: '#FEB144',
7: '#FF6663'
}
},
extend: {
fontFamily: {
sans: ['Manrope', 'Noto Sans KR', ...defaultTheme.fontFamily.sans],
mono: ['JetBrains Mono', ...defaultTheme.fontFamily.mono]
},
spacing: {
page: '156px',
'page-sm': '80px'
},
typography: {
DEFAULT: {
css: {
'code::before': {
content: ''
},
'code::after': {
content: ''
},
'blockquote p:last-of-type::after': {
content: ''
},
'blockquote p:first-of-type::before': {
content: ''
}
}
}
}
}
},
plugins: [forms, typography]
} satisfies Config