forked from atlantabitdevs/atlbit.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
29 lines (29 loc) · 840 Bytes
/
tailwind.config.js
File metadata and controls
29 lines (29 loc) · 840 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
darkMode: ['class'],
theme: {
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
dropShadow: {
header: '0 4px 24px rgba(0, 0, 0, 0.04)',
'header-dark': '0 4px 24px rgba(0, 0, 0, 0.15)',
sidebar: '4px 0 24px rgba(0, 0, 0, 0.04)',
'sidebar-dark': '4px 0 24px rgba(0, 0, 0, 0.15)',
},
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
serif: ['IBM Plex Serif', 'serif'],
},
},
plugins: [],
}