-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
37 lines (36 loc) · 1.03 KB
/
tailwind.config.cjs
File metadata and controls
37 lines (36 loc) · 1.03 KB
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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
safelist: [
// Safe list the background classes used in the form notification
'bg-red-400',
'bg-green-400',
],
theme: {
extend: {
fontFamily: {
sans: ['Nunito', ...defaultTheme.fontFamily.sans],
mono: ['"Roboto Mono"', ...defaultTheme.fontFamily.mono],
exo2: ['"Exo 2"', ...defaultTheme.fontFamily.sans],
poppins: ['Poppins', ...defaultTheme.fontFamily.sans],
nunito: ['Nunito', ...defaultTheme.fontFamily.sans],
},
gridTemplateColumns: {
'22': 'repeat(22, minmax(0, 1fr))',
},
colors: {
'theme-teal': '#1BAFAF',
'theme-dark-blue': '#20385E',
'theme-coral': '#E48279',
'theme-coral-2': '#E88E80',
'theme-pastel-green': '#9DD9BD',
'theme-cream': '#FDF9F6',
'theme-light-teal': '#CAF1F1',
'theme-light-coral': '#F8DBD8',
'theme-sand': '#F6D5B1'
},
},
},
plugins: [],
}