-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
38 lines (37 loc) · 975 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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
fontFamily: {
sans: ["Inter"],
"work-sans": ["Work Sans"],
inconsolata: ["Inconsolata"],
},
colors: {
"uniswap-gray": "#737781",
"uniswap-dark-gray-box-border": "#AEACB4",
"header-text": "#33363F",
"body-text": "#40424C",
"mem-red": "#E44A47",
},
backgroundColor: {
main: "#F4F7F9",
"button-red": "#E44A47",
"button-purple": "#D83D81",
"button-dark": "#33363F",
tag: "#D9D9D9",
},
gradientColorStops: {
"button-red": "#E44A47",
"button-purple": "#D83D81",
},
animation: {
fadeInSlow: "fadeIn 2s linear forwards",
fadeInFast: "fadeIn 1.5s linear forwards",
},
},
},
plugins: [],
};