-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
54 lines (52 loc) · 1015 Bytes
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import { skeleton } from '@skeletonlabs/tw-plugin';
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
darkMode: ['darkmode'],
theme: {
extend: {
fontSize: {
heading: '3.8rem', // text-6xl
'sub-heading': '2.2rem', // text-3xl
normal: '1.2rem', // text-xl
},
colors: {
primary: '#3a9ce2',
secondary: '#1b1f24',
'light-secondary': '#313539',
black: '#1e1e1e',
white: '#f6f6f6',
'dark-white': '#939393',
},
fontFamily: {
'pt-sans': ['PT sans'],
},
},
},
daisyui: {
themes: [
{
mytheme: {
primary: '#3a9ce2',
secondary: '#1b1f24',
accent: '#ffffff',
neutral: '#ffffff',
'base-100': '#313539',
info: '#ffffff',
success: '#00ffff',
warning: '#ffffff',
error: '#b91c1c',
},
},
],
},
plugins: [
require('daisyui'),
skeleton({
themes: {
// Register each theme within this array:
preset: ['skeleton'],
},
}),
],
};