-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.mjs
More file actions
38 lines (38 loc) · 979 Bytes
/
Copy pathtailwind.config.mjs
File metadata and controls
38 lines (38 loc) · 979 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./public/**/*.html','./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
colors: {
'dark': '#0E121D',
'light': '#FFFFFF',
'middle': '#626F9A',
'accent1': '#78CA9D',
'accent2': '#D491B4',
},
fontFamily: {
sans: ['Graphik', 'sans-serif'],
serif: ['Merriweather', 'serif'],
},
fontSize: {
sm: '.75rem',
base: '1rem',
xl: '1.25rem',
'2xl': '1.75rem',
'3xl': '2.5rem',
'4xl': '3.75rem',
'5xl': '6.25rem',
'6xl': '10rem',
'7xl': '15rem',
},
extend: {
spacing: {
'card': '400%',
},
maxWidth: {
'half': '50%',
'tq' : '95%',
},
},
},
plugins: [],
}