-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
41 lines (39 loc) · 1.29 KB
/
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
35
36
37
38
39
40
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme');
const colors = require('tailwindcss/colors');
module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,svelte,ts,tsx,vue}'],
theme: {
extend: {
colors: {
primary: 'var(--aw-color-primary)',
secondary: 'var(--aw-color-secondary)',
accent: 'var(--aw-color-accent)',
light: 'var(--aw-color-bg-page)',
ns_green: '#63c7c3',
bg_dark: '#0f172a',
bg_light: 'var(--aw-color-bg-page)',
text_page: 'var(--aw-color-text-page)',
text_muted: 'var(--aw-color-text-muted)',
},
fontFamily: {
sans: ['var(--aw-font-sans)', ...defaultTheme.fontFamily.sans],
serif: ['var(--aw-font-serif)', ...defaultTheme.fontFamily.serif],
heading: ['var(--aw-font-heading)', ...defaultTheme.fontFamily.sans],
},
backgroundImage: {
'pplComputer': "url('/public/images/peopleComputer.jpg')",
'home-bg': "url('/src/assets/images/video_test.gif')",
},
maxWidth: {
'1/2': '50%',
'1/4': '25%',
'3/4': '75%',
'1/3': '33.333333%',
'2/3': '66.666667%',
}
},
},
plugins: [require('@tailwindcss/typography')],
darkMode: 'class',
};