-
Notifications
You must be signed in to change notification settings - Fork 20
/
tailwind.config.cjs
45 lines (43 loc) · 1.02 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
const colors = require("tailwindcss/colors");
const plugin = require("tailwindcss/plugin");
module.exports = {
content: [
"./index.html",
"./src/**/*.rs",
"./mobile/**/*.rs",
"desktop/**/*.rs",
],
theme: {
colors: {
transparent: "transparent",
current: "currentColor",
black: colors.black,
white: colors.white,
gray: colors.gray,
emerald: colors.emerald,
indigo: colors.indigo,
yellow: colors.yellow,
dark: colors.neutral,
red: colors.red,
accent: "rgba(226,233,252,255)",
card: "#f9fbfe",
app: {
DEFAULT: "#3074F5",
50: "#DFEAFD",
100: "#CCDDFD",
200: "#A5C2FB",
300: "#7EA8F9",
400: "#578EF7",
500: "#3074F5",
600: "#0B55E2",
700: "#0841AC",
800: "#062D77",
900: "#031941",
950: "#020F27",
},
},
extend: {},
},
plugins: [require("@tailwindcss/forms"), require("daisyui")],
};