From a1c307df640bef6800fedaaf54a5f50b16b5615c Mon Sep 17 00:00:00 2001 From: Brian Rogers Date: Tue, 27 Sep 2022 11:09:38 -0600 Subject: [PATCH] adding more colors to tailwind config --- src/tailwind.config.js | 347 ++++++++++++++++++++++++----------------- 1 file changed, 206 insertions(+), 141 deletions(-) diff --git a/src/tailwind.config.js b/src/tailwind.config.js index 01c053c..e841cba 100644 --- a/src/tailwind.config.js +++ b/src/tailwind.config.js @@ -35,19 +35,6 @@ module.exports = { }, // reds - 'mulberry': { - 50: '#fbf4f9', - 100: '#f9eaf4', - 200: '#f5d5ea', - 300: '#eeb3d8', - 400: '#e284bd', - 500: '#d55fa3', - 600: '#c54b8c', - 700: '#a72f6c', - 800: '#8a2a59', - 900: '#74274d', - }, - 'monza': { 50: '#fff0f0', 100: '#ffdede', @@ -74,8 +61,34 @@ module.exports = { 900: '#8f0a0a', }, + 'mandy': { + 50: '#fef2f3', + 100: '#fde6e7', + 200: '#fbd0d5', + 300: '#f7aab2', + 400: '#f27a8a', + 500: '#ea546c', + 600: '#d5294d', + 700: '#b31d3f', + 800: '#961b3c', + 900: '#811a39', + }, + // oranges + 'saffron-mango': { + 50: '#fff9eb', + 100: '#feeec7', + 200: '#fddc8a', + 300: '#fcc653', + 400: '#fbad24', + 500: '#f58a0b', + 600: '#d96506', + 700: '#b44409', + 800: '#92350e', + 900: '#782c0f', + }, + // yellows @@ -94,6 +107,19 @@ module.exports = { // greens + 'mantis': { + 50: '#f6faf3', + 100: '#e9f5e3', + 200: '#d3eac8', + 300: '#afd89d', + 400: '#82bd69', + 500: '#61a146', + 600: '#4c8435', + 700: '#3d692c', + 800: '#345427', + 900: '#2b4522', + }, + 'bright-green': { 50: '#efffe6', 100: '#daffc8', @@ -107,58 +133,6 @@ module.exports = { 900: '#1d5710', }, - 'spring-green': { - 50: '#effef6', - 100: '#d9ffee', - 200: '#b5fddd', - 300: '#7bfac4', - 400: '#3aeea2', - 500: '#12e78d', - 600: '#07b26a', - 700: '#0a8b55', - 800: '#0e6d46', - 900: '#0d5a3c', - }, - - 'forest-green': { - 50: '#f1fdf0', - 100: '#ddfcdc', - 200: '#bff6bc', - 300: '#8aee87', - 400: '#50dc4c', - 500: '#24b321', - 600: '#1ba118', - 700: '#187f16', - 800: '#186417', - 900: '#155215', - }, - - 'mountain-meadow': { - 50: '#ecfdf3', - 100: '#d1fae1', - 200: '#a7f3c9', - 300: '#6ee7ac', - 400: '#34d38b', - 500: '#0fa968', - 600: '#05965c', - 700: '#04784c', - 800: '#065f3e', - 900: '#064e34', - }, - - 'eucalyptus': { - 50: '#f1fcf5', - 100: '#dff9ea', - 200: '#c0f2d5', - 300: '#8fe6b5', - 400: '#57d18c', - 500: '#30b76b', - 600: '#239654', - 700: '#22844d', - 800: '#1d5e3a', - 900: '#1a4d31', - }, - 'japanese-laurel': { 50: '#ebffe5', 100: '#d0ffc7', @@ -185,6 +159,71 @@ module.exports = { 900: '#135710', }, + 'forest-green': { + 50: '#f1fdf0', + 100: '#ddfcdc', + 200: '#bff6bc', + 300: '#8aee87', + 400: '#50dc4c', + 500: '#24b321', + 600: '#1ba118', + 700: '#187f16', + 800: '#186417', + 900: '#155215', + }, + + 'spring-green': { + 50: '#effef6', + 100: '#d9ffee', + 200: '#b5fddd', + 300: '#7bfac4', + 400: '#3aeea2', + 500: '#12e78d', + 600: '#07b26a', + 700: '#0a8b55', + 800: '#0e6d46', + 900: '#0d5a3c', + }, + + 'mountain-meadow': { + 50: '#ecfdf3', + 100: '#d1fae1', + 200: '#a7f3c9', + 300: '#6ee7ac', + 400: '#34d38b', + 500: '#0fa968', + 600: '#05965c', + 700: '#04784c', + 800: '#065f3e', + 900: '#064e34', + }, + + 'eucalyptus': { + 50: '#f1fcf5', + 100: '#dff9ea', + 200: '#c0f2d5', + 300: '#8fe6b5', + 400: '#57d18c', + 500: '#30b76b', + 600: '#239654', + 700: '#22844d', + 800: '#1d5e3a', + 900: '#1a4d31', + }, + + 'sea-green': { + 50: '#f0f9f4', + 100: '#daf1e3', + 200: '#b8e2cb', + 300: '#8acbaa', + 400: '#58af86', + 500: '#348c66', + 600: '#267554', + 700: '#1e5e46', + 800: '#1a4b38', + 900: '#163e2f', + }, + // teals 'aquamarine': { @@ -200,19 +239,6 @@ module.exports = { 900: '#005548', }, - 'bermuda': { - 50: '#f2fbf9', - 100: '#d2f5f0', - 200: '#a5eae1', - 300: '#7bdbd1', - 400: '#42bfb6', - 500: '#29a39c', - 600: '#1e837f', - 700: '#1c6967', - 800: '#1b5453', - 900: '#1b4645', - }, - 'tiber': { 50: '#edfffc', 100: '#c2fff8', @@ -226,6 +252,19 @@ module.exports = { 900: '#05403e', }, + 'bermuda': { + 50: '#f2fbf9', + 100: '#d2f5f0', + 200: '#a5eae1', + 300: '#7bdbd1', + 400: '#42bfb6', + 500: '#29a39c', + 600: '#1e837f', + 700: '#1c6967', + 800: '#1b5453', + 900: '#1b4645', + }, + 'wedgewood': { 50: '#f2f9f9', 100: '#ddeff0', @@ -241,6 +280,19 @@ module.exports = { // blues + 'cerulean': { + 50: '#f0f9ff', + 100: '#e0f3fe', + 200: '#bbe8fc', + 300: '#7fd5fa', + 400: '#3bc0f5', + 500: '#11a9e6', + 600: '#0588c4', + 700: '#056c9f', + 800: '#095b83', + 900: '#0d4c6d', + }, + 'catalina-blue': { 50: '#ecfaff', 100: '#d5f2ff', @@ -267,6 +319,19 @@ module.exports = { 900: '#134395', }, + 'royal-blue': { + 50: "#eff7ff", + 100: "#dbebfe", + 200: "#beddff", + 300: "#92c9fe", + 400: "#5faafb", + 500: "#3988f8", + 600: "#1c64ec", + 700: "#1b53da", + 800: "#1d44b0", + 900: "#1d3e8b", + }, + 'fun-blue': { 50: '#f2f7fd', 100: '#e4edfa', @@ -281,32 +346,6 @@ module.exports = { }, // purples - 'electric-violet': { - 50: '#f3f1ff', - 100: '#ebe5ff', - 200: '#d9ceff', - 300: '#bea6ff', - 400: '#9f75ff', - 500: '#843dff', - 600: '#7916ff', - 700: '#6b04fd', - 800: '#5a03d5', - 900: '#4b05ad', - }, - - 'seance': { - 50: '#fcf3ff', - 100: '#fae7ff', - 200: '#f4ceff', - 300: '#efa7ff', - 400: '#e772ff', - 500: '#d73df8', - 600: '#bf1ddc', - 700: '#a615bc', - 800: '#851395', - 900: '#70157a', - }, - 'lilac-bush': { 50: '#f8f5fd', 100: '#f2edfa', @@ -333,45 +372,30 @@ module.exports = { 900: '#5b267d', }, - - // pinks - 'mandy': { - 50: '#fef2f3', - 100: '#fde6e7', - 200: '#fbd0d5', - 300: '#f7aab2', - 400: '#f27a8a', - 500: '#ea546c', - 600: '#d5294d', - 700: '#b31d3f', - 800: '#961b3c', - 900: '#811a39', + 'electric-violet': { + 50: '#f3f1ff', + 100: '#ebe5ff', + 200: '#d9ceff', + 300: '#bea6ff', + 400: '#9f75ff', + 500: '#843dff', + 600: '#7916ff', + 700: '#6b04fd', + 800: '#5a03d5', + 900: '#4b05ad', }, - 'amaranth': { - 50: '#fff1f4', - 100: '#ffe3e8', - 200: '#ffcbd8', - 300: '#ffa1b8', - 400: '#ff6d94', - 500: '#fa3972', - 600: '#e91f64', - 700: '#c40c4f', - 800: '#a40d49', - 900: '#8c0f45', - }, - - 'jazzberry-jam': { - 50: '#fef1fa', - 100: '#fee5f8', - 200: '#ffcbf3', - 300: '#ffa1e7', - 400: '#ff67d4', - 500: '#fa3abe', - 600: '#eb179d', - 700: '#cc0a80', - 800: '#b10c6e', - 900: '#8c0f59', + 'seance': { + 50: '#fcf3ff', + 100: '#fae7ff', + 200: '#f4ceff', + 300: '#efa7ff', + 400: '#e772ff', + 500: '#d73df8', + 600: '#bf1ddc', + 700: '#a615bc', + 800: '#851395', + 900: '#70157a', }, 'scarlet-gum': { @@ -387,6 +411,46 @@ module.exports = { 900: '#4e1859', }, + 'jazzberry-jam': { + 50: '#fef1fa', + 100: '#fee5f8', + 200: '#ffcbf3', + 300: '#ffa1e7', + 400: '#ff67d4', + 500: '#fa3abe', + 600: '#eb179d', + 700: '#cc0a80', + 800: '#b10c6e', + 900: '#8c0f59', + }, + + + // pinks + 'mulberry': { + 50: '#fbf4f9', + 100: '#f9eaf4', + 200: '#f5d5ea', + 300: '#eeb3d8', + 400: '#e284bd', + 500: '#d55fa3', + 600: '#c54b8c', + 700: '#a72f6c', + 800: '#8a2a59', + 900: '#74274d', + }, + + 'amaranth': { + 50: '#fff1f4', + 100: '#ffe3e8', + 200: '#ffcbd8', + 300: '#ffa1b8', + 400: '#ff6d94', + 500: '#fa3972', + 600: '#e91f64', + 700: '#c40c4f', + 800: '#a40d49', + 900: '#8c0f45', + }, }, @@ -403,5 +467,6 @@ module.exports = { require('@tailwindcss/forms'), require('@tailwindcss/typography'), require('tailwindcss-neu'), + require('daisyui'), ], }