-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
37 lines (36 loc) · 1.11 KB
/
tailwind.config.ts
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
import { theme } from './src/lib/config/general'
// @ts-ignore Could not find a declaration file for module '@tailwindcss/typography'.
import typography from '@tailwindcss/typography'
// @ts-ignore Could not find a declaration file for module 'daisyui'.
import daisyui from 'daisyui'
// @ts-ignore Could not find a declaration file for module '@tailwindcss/forms'.
// import forms from '@tailwindcss/forms'
export default {
content: ['./src/**/*.{html,md,js,svelte,ts}'],
// theme: { extend: {} },
theme: {
extend: {
colors: {
primary: '#3F9378',
secondary: '#2E3855',
'base-100': '#E5EBEB',
'base-200': '#E5EBEB',
'pfp-navy': '#2E3855',
'light-blue': '#E7F5F5',
'light-green': '#DDF3EA',
white: '#FFFFFF',
'baby-blue': '#D0E6F2',
'pfp-green': '#3F9378',
'pfp-orange': '#EC8B5A',
},
letterSpacing: {
menu: '0.15em',
},
fontFamily: {
sans: ['Public Sans', 'Roboto', 'sans-serif'],
}
},
},
plugins: [typography, daisyui],
daisyui: { themes: theme.map(({ name }) => name) }
}