forked from transitive-bullshit/nextjs-notion-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
33 lines (31 loc) · 879 Bytes
/
tailwind.config.js
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
import { emerald, amber, violet, neutral } from 'tailwindcss/colors'
/** @type {import('tailwindcss').Config} */
export const content = [
'./app/**/*.{js,ts,jsx,tsx,mdx}', // Note the addition of the `app` directory.
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
// Or if using `src` directory:
'./src/**/*.{js,ts,jsx,tsx,mdx}',
]
export const theme = {
extend: {
colors: {
white: '#fff',
green: emerald,
yellow: amber,
purple: violet,
gray: neutral,
'gray-150': '#EEEFF2',
'gray-1000': '#050505',
black: '#050505',
'design-details': '#458886',
'design-details-light': '#EEF3F3',
'design-details-dark': '#273F3F',
'hacker-news': '#FF965A',
twitter: '#479BEA',
current: 'currentColor',
jet: "#37352f",
},
},
}
export const plugins = []