-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
40 lines (39 loc) · 1.11 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: ['index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
sans: ['Noto Sans JP', ...defaultTheme.fontFamily.sans],
},
colors: {
primary: '#428C95',
'primary-hover': '#337881',
secondary: '#FFFFFF', // white
text: '#171923', // gray 900
'text-secondary': '#718096', // gray 500
background: '#F1F2F6', // main BG
warning: '#F56565', // red 500
selected: '#3182CE', // blue 500
'background-secondary': '#A0AEC0', // gray 400
},
animation: {
"scale-in-center": "scale-in-center 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both"
},
keyframes: {
"scale-in-center": {
"0%": {
transform: "scale(0)",
opacity: "1"
},
to: {
transform: "scale(1)",
opacity: "1"
}
}
}
},
},
plugins: [],
}