-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
50 lines (49 loc) · 1.46 KB
/
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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
// Or if using `src` directory:
"./src/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
"jala-600": "#0A6BBD",
"jala-500": "#0084F3",
"jala-trust": "#2584F3",
"jala-insight": "#1D77DF",
"jala-impact": "#86BBD8",
"jala-trade": "#EF6437",
"jala-farm": "#F6AF42",
"jala-gray": "#385271",
"jala-hover-bg": "#EAF1FA",
"jala-primary": "#2284F3",
"jala-dark-blue": "#002147",
"jala-dark-blue-100": "#032C5A",
"jala-light-blue": "#F3F9FC",
"jala-farm-bg": "#FCF9F4",
"jala-farm-bg-dark": "#302007",
"jala-trade-bg-dark": "#FDEEE9",
"jala-trade-bg": "#FFF6F3",
"jala-insight-button": "#E2F0F8",
"jala-farm-button": "#F9EFE0",
"jala-trade-button": "#FCEFEB",
"jala-impact-button": "#E6EEF3",
},
fontSize: {
tiny: ".938rem",
},
dropShadow: {
jala: "0 25px 25px rgba(29,119,223,0.30)",
},
fontFamily: {
inter: ["Inter", ...defaultTheme.fontFamily.sans],
poppins: ["Poppins", ...defaultTheme.fontFamily.sans],
},
},
},
plugins: [require("@tailwindcss/forms")],
};