mirror of
https://github.com/cryptoadvance/specter-desktop.git
synced 2026-08-13 12:33:29 +02:00
28 lines
693 B
JavaScript
28 lines
693 B
JavaScript
|
|
/** @type {import('tailwindcss').Config} */
|
||
|
|
module.exports = {
|
||
|
|
content: ["./src/cryptoadvance/specter/templates/**/*.{html,js,jinja}"],
|
||
|
|
theme: {
|
||
|
|
fontFamily: {
|
||
|
|
sans: ["Social", "sans-serif"],
|
||
|
|
},
|
||
|
|
extend: {
|
||
|
|
colors: {
|
||
|
|
dark: {
|
||
|
|
50: "#E7E7E8",
|
||
|
|
100: "#CFCFD0", // light text
|
||
|
|
200: "#9F9FA1", // grey text
|
||
|
|
300: "#6F7073",
|
||
|
|
400: "#57585B", // grey text
|
||
|
|
500: "#3F4044",
|
||
|
|
600: "#2C2D31", // grey button
|
||
|
|
700: "#1B1C21", // borders
|
||
|
|
800: "#14151A", // card background
|
||
|
|
900: "#0F1015", // background
|
||
|
|
},
|
||
|
|
accent: "#0047FF",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
plugins: [],
|
||
|
|
};
|