-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.mjs
106 lines (105 loc) · 2.79 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/** @type {import('tailwindcss').Config} */
import tailwindcssTypography from '@tailwindcss/typography';
import defaultTheme from 'tailwindcss/defaultTheme';
export default {
darkMode: ['class'],
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
animation: {
marquee:
'marquee var(--speed, 10s) linear infinite var(--direction, forwards)',
'text-marquee':
'text-marquee var(--speed, 10s) linear infinite var(--direction, forwards)',
'fade-in-out':
'fade-in-out var(--speed, 10s) linear infinite var(--direction, forwards)',
'accordion-down': 'accordion-down 0.2s ease-out',
'accordion-up': 'accordion-up 0.2s ease-out',
},
colors: {
background: 'var(--background)',
foreground: 'var(--foreground)',
muted: 'var(--muted)',
primary: 'var(--primary)',
accent: 'hsl(var(--accent))',
border: 'hsl(var(--border))',
destructive: 'hsl(var(--destructive))',
'destructive-light': 'hsl(var(--destructive-light))',
positive: 'hsl(var(--positive))',
'positive-light': 'hsl(var(--positive-light))',
},
fontFamily: {
sans: ['Inter', ...defaultTheme.fontFamily.sans],
mono: ['JetBrains Mono', ...defaultTheme.fontFamily.mono],
},
// fontSize: {
// '7xl': [
// '6.5rem',
// {
// lineHeight: '1.1',
// letterSpacing: '-0.01em',
// },
// ],
// '6xl': [
// '4rem',
// {
// lineHeight: '1',
// letterSpacing: '-0.01em',
// },
// ],
// },
keyframes: {
marquee: {
to: {
transform: 'translateX(calc(-100cqw - 100%))',
},
},
'text-marquee': {
to: {
transform: 'translateX(-50%)',
},
},
'fade-in-out': {
'0%': {
opacity: '0',
},
'2.5%': {
opacity: '1',
},
'98%': {
opacity: '1',
},
'100%': {
opacity: '0',
},
},
'accordion-down': {
from: {
height: '0',
},
to: {
height: 'var(--radix-accordion-content-height)',
},
},
'accordion-up': {
from: {
height: 'var(--radix-accordion-content-height)',
},
to: {
height: '0',
},
},
},
screens: {
xs: '580px',
},
},
},
plugins: [
function ({ addVariant }) {
addVariant('starting', '@starting-style');
},
require('tailwind-gradient-mask-image'),
tailwindcssTypography,
],
};