forked from OneBusAway/wayfinder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
41 lines (37 loc) · 844 Bytes
/
tailwind.config.js
File metadata and controls
41 lines (37 loc) · 844 Bytes
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
import flowbitePlugin from 'flowbite/plugin';
import dotenv from 'dotenv';
dotenv.config();
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./src/**/*.{html,js,svelte,ts}',
'./node_modules/flowbite-svelte/**/*.{html,js,svelte,ts}'
],
theme: {
extend: {
colors: {
brand: process.env.PUBLIC_APP_PRIMARY_COLOR || '#78aa36',
'brand-secondary': process.env.PUBLIC_APP_SECONDARY_COLOR || '#486621',
// flowbite-svelte
primary: {
50: '#FFF5F2',
100: '#FFF1EE',
200: '#FFE4DE',
300: '#FFD5CC',
400: '#FFBCAD',
500: '#FE795D',
600: '#EF562F',
700: '#EB4F27',
800: '#CC4522',
900: '#A5371B'
}
},
rotate: {
135: '135deg',
225: '225deg'
}
}
},
plugins: [require('@tailwindcss/forms'), flowbitePlugin],
darkMode: 'class'
};