-
Notifications
You must be signed in to change notification settings - Fork 12
/
tailwind.config.mjs
62 lines (62 loc) · 1.84 KB
/
tailwind.config.mjs
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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
colors: {
brand: {
100: '#ADB2B9',
200: '#999EA5',
300: '#858A91',
400: '#71767D',
500: '#5D6269',
600: '#494E55',
700: '#353A41',
800: '#21262D',
900: '#0D1219'
}
},
fontFamily: {
mono: [
"Menlo",
"Monaco",
"Consolas",
'"Liberation Mono"',
'"Courier New"',
"monospace",
],
brand: [
"Viga",
"Montserrat",
"system-ui",
"-apple-system",
"BlinkMacSystemFont",
'"Segoe UI"',
"Roboto",
'"Helvetica Neue"',
"Arial",
'"Noto Sans"',
"sans-serif",
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"',
'"Noto Color Emoji"',
],
},
typography: {
DEFAULT: {
css: {
'blockquote p:first-of-type::before': null,
'blockquote p:last-of-type::after': null,
},
},
},
},
animation: {
'spin-slow': 'spin 3s linear infinite',
}
},
plugins: [
require('@tailwindcss/typography'),
],
}