forked from agility/agilitycms-nextjs-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
50 lines (46 loc) · 855 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
const { fontFamily } = require('tailwindcss/defaultTheme')
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}"
],
theme: {
fontFamily: {
sans: ['var(--font-inter)', ...fontFamily.sans],
},
extend: {
colors: {
transparent: "transparent",
agility: "#222",
primary: {
100: "#a273ff",
200: "#935bff",
300: "#8344ff",
400: "#742cff",
500: "#6415FF",
600: "#5a13e6",
700: "#5011cc",
800: "#460fb3",
900: "#3c0d99",
},
secondary: {
100: "#7c8ba1",
200: "#667892",
300: "#506582",
400: "#3a5173",
500: "#243E63",
600: "#203859",
700: "#1d324f",
800: "#192b45",
900: "#16253b",
},
},
},
},
variants: {
extend: {},
},
plugins: [
require("@tailwindcss/typography")
],
};