-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.mjs
44 lines (43 loc) · 1.06 KB
/
tailwind.config.mjs
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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme');
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
important: true,
blocklist: ['container'],
experimental: {
optimizeUniversalDefaults: true,
},
theme: {
extend: {
screens: {
'1440': '2560px',
'container': '1474px'
},
padding: {
gallery: 'var(--space-gallery)',
'gallery-large': 'var(--space-gallery-large)'
},
margin: {
section: 'var(--space-section)',
},
fontFamily: {
roboto: ['Roboto', ...defaultTheme.fontFamily.sans],
barlow: ['Barlow', ...defaultTheme.fontFamily.sans],
},
fontSize: {
min: 'var(--step-00)',
bread: 'var(--step-0)',
subtitle: 'var(--step-1)',
title: 'var(--step-5)',
headline: 'var(--step-6)',
},
colors: {
light: '#F8FAFC',
dark: '#131313',
mid: '#222222',
glass: '#E3EFFF',
},
},
},
plugins: [],
}