summaryrefslogtreecommitdiffstats
path: root/src/webapp/tailwind.config.cjs
diff options
context:
space:
mode:
authorivarlovlie <git@ivarlovlie.no>2022-02-14 19:02:54 +0100
committerivarlovlie <git@ivarlovlie.no>2022-02-14 19:02:54 +0100
commit1d482a4ec2cf24dbe7cc6cb02e192e1b9545f796 (patch)
tree9b0a26b7d3efeecd5ec20a6e5624857624bc53a6 /src/webapp/tailwind.config.cjs
parentda4c22abbbf04566891976d01f5cf629857f8d0b (diff)
downloadbookmark-thing-1d482a4ec2cf24dbe7cc6cb02e192e1b9545f796.tar.xz
bookmark-thing-1d482a4ec2cf24dbe7cc6cb02e192e1b9545f796.zip
feat: Experiment with tailwind
Diffstat (limited to 'src/webapp/tailwind.config.cjs')
-rw-r--r--src/webapp/tailwind.config.cjs121
1 files changed, 121 insertions, 0 deletions
diff --git a/src/webapp/tailwind.config.cjs b/src/webapp/tailwind.config.cjs
new file mode 100644
index 0000000..ccfc63f
--- /dev/null
+++ b/src/webapp/tailwind.config.cjs
@@ -0,0 +1,121 @@
+const forms = require("@tailwindcss/forms");
+
+module.exports = {
+ darkMode: "class",
+ content: ["./src/**/*.{html,js,svelte,ts}"],
+ plugins: [forms],
+ theme: {
+ extend: {
+ colors: {
+ gray: {
+ "50": "#f9fafb",
+ "100": "#f0f1f3",
+ "200": "#d9dbdf",
+ "300": "#b7bbc2",
+ "400": "#8f959f",
+ "500": "#6e7582",
+ "600": "#555e6e",
+ "700": "#3e4859",
+ "800": "#283242",
+ "900": "#131f30",
+ },
+ cerise: {
+ "50": "#fff6f6",
+ "100": "#ffefef",
+ "200": "#f9d3d3",
+ "300": "#eaa6a6",
+ "400": "#e56d6d",
+ "500": "#d93c3e",
+ "600": "#bd0e0f",
+ "700": "#930705",
+ "800": "#680605",
+ "900": "#470201",
+ },
+ orange: {
+ "50": "#fff8f1",
+ "100": "#fbecdf",
+ "200": "#f6d7bf",
+ "300": "#e5ad8b",
+ "400": "#d67a4a",
+ "500": "#c4540b",
+ "600": "#9c4303",
+ "700": "#713707",
+ "800": "#4a2702",
+ "900": "#2c1b01",
+ },
+ lemon: {
+ "50": "#fdfdea",
+ "100": "#fdf6be",
+ "200": "#f5e27b",
+ "300": "#d9bd2f",
+ "400": "#b6930d",
+ "500": "#967100",
+ "600": "#805501",
+ "700": "#643e02",
+ "800": "#422a00",
+ "900": "#271a00",
+ },
+ green: {
+ "50": "#f3faf7",
+ "100": "#daf5eb",
+ "200": "#b6e5d3",
+ "300": "#85c8ac",
+ "400": "#3ca773",
+ "500": "#108835",
+ "600": "#016d00",
+ "700": "#005301",
+ "800": "#003906",
+ "900": "#072408",
+ },
+ leaf: {
+ "50": "#edfafa",
+ "100": "#d5f5f6",
+ "200": "#aae7ea",
+ "300": "#69c8ce",
+ "400": "#13a2ad",
+ "500": "#0d828d",
+ "600": "#056874",
+ "700": "#06505c",
+ "800": "#043744",
+ "900": "#01222f",
+ },
+ azure: {
+ "50": "#f4faff",
+ "100": "#e2f0ff",
+ "200": "#c4defe",
+ "300": "#95bbee",
+ "400": "#5e95e4",
+ "500": "#2173e6",
+ "600": "#1358cc",
+ "700": "#1242a2",
+ "800": "#1a2e6c",
+ "900": "#161d38",
+ },
+ blue: {
+ "50": "#f5f8ff",
+ "100": "#e5edff",
+ "200": "#ccdafc",
+ "300": "#a5b8e9",
+ "400": "#7c91e1",
+ "500": "#5c69e9",
+ "600": "#4a46e1",
+ "700": "#3a31b9",
+ "800": "#282284",
+ "900": "#191452",
+ },
+ indigo: {
+ "50": "#faf9ff",
+ "100": "#f1effe",
+ "200": "#dcd7fc",
+ "300": "#bcb2f2",
+ "400": "#9e86e5",
+ "500": "#895ddb",
+ "600": "#8335c8",
+ "700": "#6620a9",
+ "800": "#48147b",
+ "900": "#2f0d4d",
+ },
+ }
+ }
+ }
+};