diff --git a/site/plugins/admin/tailwind.config.js b/site/plugins/admin/tailwind.config.js index 0e276f3f..c8a271a1 100644 --- a/site/plugins/admin/tailwind.config.js +++ b/site/plugins/admin/tailwind.config.js @@ -1,21 +1,26 @@ module.exports = { theme: { - extend: { - colors: { - gray: { - '000': '#f9f9f9', - '100': '#ededed', - '200': '#e1e1e1', - '300': '#d3d3d3', - '400': '#c4c4c4', - '500': '#b3b3b3', - '600': '#a0a0a0', - '700': '#898989', - '800': '#6c6c6c', - '900': '#3f3f3f', - } + colors: { + black: '#000', + white: '#fff', + gray: { + '000': '#f9f9f9', + '100': '#ededed', + '200': '#e1e1e1', + '300': '#d3d3d3', + '400': '#c4c4c4', + '500': '#b3b3b3', + '600': '#a0a0a0', + '700': '#898989', + '800': '#6c6c6c', + '900': '#3f3f3f', + '1000': '#16171a', } - } + }, + borderColor: theme => ({ + ...theme('colors'), + default: theme('colors.black', 'currentColor'), + }), }, variants: {}, plugins: [],