-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.mjs
63 lines (63 loc) · 1.48 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
colors: {
main: '#FF67A5',
back: '#121222',
},
width: {
screen: ["100vw", "100dvw"]
},
height: {
screen: ['100vh', '100dvh'],
},
minWidth: {
screen: ['100vw', '100dvw'],
},
minHeight: {
screen: ['100vh', '100dvh'],
},
maxWidth: {
screen: ['100vw', '100dvw'],
},
maxHeight: {
screen: ['100vh', '100dvh'],
},
fontFamily: {
sans: [
'Route159',
'"Noto Sans JP"',
'ui-sans-serif',
'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"',
],
'poiret-one': ['"Poiret One"', 'sans-serif'],
urbanist: ['Urbanist', 'sans-serif'],
'shippori-mincho': ['"Shippori Mincho"', 'sans-serif'],
},
animation: {
roll: 'roll linear infinite',
},
keyframes: {
roll: {
'0%': { transform: 'translateX(100%)' },
'100%': { transform: 'translateX(-100%)' },
},
},
},
},
plugins: [],
};