-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
48 lines (48 loc) · 1.17 KB
/
tailwind.config.js
File metadata and controls
48 lines (48 loc) · 1.17 KB
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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
inter: ['Inter', 'sans-serif'],
righteous: ['Righteous', 'sans-serif'],
russoOne: ['Russo One', 'sans-serif'],
notoSansJp: ['Noto Sans JP', 'sans-serif'],
shojumaru: ['Shojumaru', 'system-ui'],
},
animation: {
'fade-in': 'fadeIn 0.3s ease-out',
'slide-up': 'slideUp 0.4s ease-out',
'spin': 'spin 1s linear infinite',
},
backdropBlur: {
xs: '2px',
},
colors: {
emerald: {
400: '#34d399',
500: '#10b981',
600: '#059669',
},
teal: {
400: '#2dd4bf',
500: '#14b8a6',
600: '#0d9488',
700: '#0f766e',
},
},
},
},
plugins: [
function ({ addUtilities }) {
const newUtilities = {
'.scrollbar-hide': {
'::-webkit-scrollbar': { display: 'none' },
'-ms-overflow-style': 'none',
'scrollbar-width': 'none',
},
}
addUtilities(newUtilities)
},
],
}