/** * To use these colors in Tailwind, you need to extend your tailwind.config.js file. * * For details see: * https://tailwindcss.com/docs/customizing-colors/#extending-the-default-palette * * To use own names for the colors, change the node names "main-color-*" and "color-*". */ { "theme": { "extend": { "colors": { "main-color-1": "#CC3D3D", "main-color-2": "#3DCCCC", "color-1": { "100": "#F4D7D7", "200": "#EAAEAE", "300": "#DF8686", "400": "#D55D5D", "500": "#CC3D3D", "600": "#A22A2A", "700": "#792020", "800": "#511515", "900": "#280B0B" }, "color-2": { "100": "#D7F4F4", "200": "#AEEAEA", "300": "#86DFDF", "400": "#5DD5D5", "500": "#3DCCCC", "600": "#2AA2A2", "700": "#207979", "800": "#155151", "900": "#0B2828" } } } } }