generated from palmiak/pacamara-astro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
34 lines (34 loc) · 880 Bytes
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
backgroundSize: {
'gradient-dashed': '20px 2px, 100% 2px',
},
extend: {
boxShadow: {
'pacamara-shadow': '0px 25px 50px -12px rgba(0, 0, 0, 0.3)',
},
fontFamily: {
// 'pacamara-inter': ['"Noto Sans SC"', 'sans-serif'],
// 'pacamara-space': ['"Noto Sans SC"', 'sans-serif'],
'pacamara-inter': ['"Inter"', 'sans-serif'],
'pacamara-space': ['"Space Grotesk"', 'sans-serif'],
},
colors: {
'pacamara-primary': '#003049',
'pacamara-secondary': '#B2A4FF',
'pacamara-accent': '#FFB4B4',
'pacamara-dark': '#000E14',
'pacamara-white': '#ffffff',
},
aspectRatio: {
'9/10': '9 / 16',
},
},
},
plugins: [
require('@tailwindcss/typography'),
],
}