generated from casperiv0/nextjs-ts-eslint-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
25 lines (25 loc) · 890 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
/* eslint-disable quotes */
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
primary: "#131517",
secondary: "#1a1c20",
tertiary: "#2d2f33",
quaternary: "#3f4148",
accent: "#0262ff",
},
borderRadius: {
sm: "4px",
},
fontFamily: {
sans: 'Raleway, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"',
serif: 'RobotoSlab, ui-serif, Georgia, Cambria, "Times New Roman", Times, serif',
mono: '"FiraCode", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace',
},
},
},
plugins: [],
};