-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.ts
78 lines (77 loc) · 2.4 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
/* eslint-disable @typescript-eslint/no-var-requires */
import { fontFamily } from 'tailwindcss/defaultTheme';
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
primary: ['Inter', ...fontFamily.sans],
},
colors: {
primary: {
// Customize it on globals.css :root
200: 'rgb(var(--tw-clr-primary-200) / <alpha-value>)',
300: 'rgb(var(--tw-clr-primary-300) / <alpha-value>)',
400: 'rgb(var(--tw-clr-primary-400) / <alpha-value>)',
500: 'rgb(var(--tw-clr-primary-500) / <alpha-value>)',
},
dark: '#0e1111',
},
keyframes: {
flicker: {
'0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100%': {
opacity: 0.99,
filter:
'drop-shadow(0 0 1px rgba(252, 211, 77)) drop-shadow(0 0 15px rgba(245, 158, 11)) drop-shadow(0 0 1px rgba(252, 211, 77))',
},
'20%, 21.999%, 63%, 63.999%, 65%, 69.999%': {
opacity: 0.4,
filter: 'none',
},
},
tilt: {
'0%, 50%, 100%': {
transform: 'rotate(0deg)',
},
'25%': {
transform: 'rotate(0.5deg)',
},
'75%': {
transform: 'rotate(-0.5deg)',
},
},
},
animation: {
flicker: 'flicker 3s linear infinite',
tilt: 'tilt 10s infinite linear',
},
typography: {
DEFAULT: {
// code: {
// color: '#86e1fc',
// '&::before': { content: `"" !important` },
// '&::after': { content: `"" !important` },
// fontWeight: 'normal',
// },
// '[data-rehype-pretty-code-fragment]:nth-of-type(2) pre': {
// '[data-line]::before': {
// content: 'counter(line)',
// counterIncrement: 'line',
// display: 'inline-block',
// width: '1rem',
// marginRight: '1rem',
// textAlign: 'right',
// color: colors.slate[600],
// },
// '[data-highlighted-line]::before': {
// color: colors.slate[400],
// },
// },
},
},
},
},
plugins: [require('@tailwindcss/forms'), require('@tailwindcss/typography')],
};