-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
40 lines (36 loc) · 1013 Bytes
/
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
import type { Config } from 'tailwindcss';
import colors from 'tailwindcss/colors';
import typography from '@tailwindcss/typography';
import scrollbar from 'tailwind-scrollbar';
/** @type {import('tailwindcss').Config} */
export default <Config>{
content: ['src/**/*.{ts,vue}', 'packages/**/*.{ts,vue}'],
theme: {
extend: {
container: {
center: true,
},
colors: {
primary: '#05070D',
accent: colors.red[500],
error: colors.red[500],
success: colors.green[500],
info: colors.blue[500],
background: '#05070D',
copy: colors.zinc[100],
},
fontSize: {
display: '8rem',
},
fontFamily: {
logo: "'Tarrget', serif",
},
},
},
plugins: [
typography,
scrollbar({
nocompatible: true,
}),
],
};