-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
42 lines (39 loc) · 1007 Bytes
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ['class'],
safelist: ['dark'],
prefix: '',
content: [
'./pages/**/*.{js,jsx,vue}',
'./components/**/*.{js,jsx,vue}',
'./app/**/*.{js,jsx,vue}',
'./src/**/*.{js,jsx,vue}'
],
theme: {
extend: {
colors: {
white: '#ffffff',
pageBackground: '#f4ede3',
textBlack: 'black',
textLight: '#5f5f5f',
2: '#f04e43',
gradientStart: '#232323',
gradientEnd: '#434343',
emotionVeryGood: '#faf3e8',
emotionGood: '#fae4e4',
emotionNeutral: '#e8faf3',
emotionSad: '#edf3fa',
emotionVerySad: '#f6ebfa'
},
fontFamily: {
main: ['Poppins', 'sans-serif'],
// h1_1: ['Playfair Display', 'sans-serif'],
// h1_2: ['Noto Serif JP','serif'],
h1:["Yeseva One", "serif"],
date: ['Chocolate Classical Sans', 'sans-serif']
},
animation: {}
}
},
plugins: []
}