-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtailwind.config.mjs
34 lines (33 loc) · 967 Bytes
/
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
import tailwindPresetChungking from '@resir014/tailwind-preset-chungking';
import defaultTheme from 'tailwindcss/defaultTheme';
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
presets: [tailwindPresetChungking],
theme: {
extend: {
fontFamily: {
sans: ['Inter Variable', ...defaultTheme.fontFamily.sans],
mono: ['JetBrains Mono Variable', ...defaultTheme.fontFamily.mono],
},
gridTemplateRows: {
'bottom-bar': '40px 24px',
'scene-wrapper': '1fr 32px 64px',
},
gridTemplateColumns: {
'bottom-bar': 'auto 320px',
'pre-stream': '110px auto 562px',
},
transitionTimingFunction: {
'in-out-alerts': 'cubic-bezier(0.4, 0, 0.2, 1)',
},
boxShadow: {
'drop-layers': '0px 0px 150px 0px #000',
},
},
},
variants: {
extend: {},
},
plugins: [],
};