-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
45 lines (44 loc) · 1.21 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
const { sand, sandA } = require("@radix-ui/colors");
const { fontFamily } = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
uciblue: "#0064A4",
uciyellow: "#FFD200",
darkblue: "#1B3D6D",
lightblue: "#0064A4",
cardtitle: "#1B3D6D",
red: "#C63E04",
...sand,
...sandA,
},
fontFamily: {
body: ["var(--font-body)", ...fontFamily.sans],
title: ["var(--font-title)", ...fontFamily.serif],
},
keyframes: {
in: {
"0%": { opacity: 0, transform: "translateY(-30px)" },
"100%": { opacity: 1, transform: "translateY(0)" },
},
appear: {
"0%": { transform: "translateY(-15px)" },
"100%": { transform: "translateY(0px)" },
},
"zoom-in": {
"0%": { transform: "scale(99%)" },
"100%": { transform: "scale(100%)" },
},
},
animation: {
in: "in 400ms ease-in-out",
appear: "appear 200ms ease-in-out",
"zoom-in": "zoom-in 400ms ease-in-out"
},
},
},
plugins: [],
};