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
|
import type { Config } from 'tailwindcss';
import * as colors from '@radix-ui/colors';
import { fontFamily } from 'tailwindcss/defaultTheme';
import plugin from 'tailwindcss/plugin';
const iOsHeight = plugin(({ addUtilities }) => {
const supportsTouchRule = '@supports (-webkit-touch-callout: none)';
const webkitFillAvailable = '-webkit-fill-available';
const utilities = {
'.min-h-screen-ios': {
[supportsTouchRule]: {
minHeight: webkitFillAvailable,
},
},
'.h-screen-ios': {
[supportsTouchRule]: {
height: webkitFillAvailable,
},
},
};
// @ts-expect-error This works normally, not sure what this error is
addUtilities(utilities, ['responsive']);
});
const config: Config = {
content: {
// needs to be relative because tailwind will find the content
// by default based on the process's cwd
relative: true,
files: [
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
},
theme: {
extend: {
backgroundImage: {
gradient:
'linear-gradient(145.37deg, rgba(255, 255, 255, 0.09) -8.75%, rgba(255, 255, 255, 0.027) 83.95%)',
gradientHover:
'linear-gradient(145.37deg, rgba(255, 255, 255, 0.1) -8.75%, rgba(255, 255, 255, 0.057) 83.95%)',
shine:
'linear-gradient(45deg, rgba(255,255,255,0) 45%,rgba(255,255,255,1) 50%,rgba(255,255,255,0) 55%,rgba(255,255,255,0) 100%)',
},
colors: {
cyan: {
1: colors.cyanDarkA.cyanA1,
2: colors.cyanDarkA.cyanA2,
3: colors.cyanDarkA.cyanA3,
4: colors.cyanDarkA.cyanA4,
5: colors.cyanDarkA.cyanA5,
6: colors.cyanDarkA.cyanA6,
7: colors.cyanDarkA.cyanA7,
8: colors.cyanDarkA.cyanA8,
9: colors.cyanDarkA.cyanA9,
10: colors.cyanDarkA.cyanA10,
11: colors.cyanDarkA.cyanA11,
12: colors.cyanDarkA.cyanA12,
},
slate: {
1: colors.slateDarkA.slateA1,
2: colors.slateDarkA.slateA2,
3: colors.slateDarkA.slateA3,
4: colors.slateDarkA.slateA4,
5: colors.slateDarkA.slateA5,
6: colors.slateDarkA.slateA6,
7: colors.slateDarkA.slateA7,
8: colors.slateDarkA.slateA8,
9: colors.slateDarkA.slateA9,
10: colors.slateDarkA.slateA10,
11: colors.slateDarkA.slateA11,
12: colors.slateDarkA.slateA12,
},
},
fontFamily: {
sans: ['var(--font-inter)', ...fontFamily.sans],
},
keyframes: {
shine: {
'0%': { backgroundPosition: '-100%' },
'100%': { backgroundPosition: '100%' },
},
dash: {
'0%': { strokeDashoffset: '1000' },
'100%': { strokeDashoffset: '0' },
},
},
},
},
plugins: [iOsHeight],
};
export default config;
|