forked from mazipan/baca-quran.id
-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.js
45 lines (44 loc) · 987 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
43
44
45
/** @type {import('tailwindcss').Config} */
// eslint-disable-next-line @typescript-eslint/no-var-requires
const { createThemes } = require('tw-colors');
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {}
},
plugins: [
createThemes({
light: {
primary: 'white',
secondary: '#F3F4F6',
foreground: '#000',
'foreground-secondary': '#9ca3af'
},
dark: {
primary: '#142C66',
secondary: '#0a1d3d',
foreground: 'white',
'foreground-secondary': '#d1d5db'
},
forest: {
primary: '#016A70',
secondary: '#014c4f',
foreground: '#D0E7D2',
'foreground-secondary': '#d1d5db'
},
pinky: {
primary: '#FF597B',
secondary: '#FF8E9E',
foreground: '#1f2937',
'foreground-secondary': '#ffd6e6'
},
halloween: {
primary: '#662549',
secondary: '#451952',
foreground: '#F39F5A',
// 'foreground-secondary': '#AE445A'
'foreground-secondary': '#ff718e'
}
})
]
};