From 0ce0e2095b8d15713afda45533410f0dedd226b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9B=90=EB=8D=94?= Date: Mon, 4 Jan 2021 20:13:39 +0900 Subject: [PATCH] feat: added color presets --- tailwind.config.js | 33 ++++++++++++++++++++++++--------- 1 file changed, 24 insertions(+), 9 deletions(-) diff --git a/tailwind.config.js b/tailwind.config.js index 62dfdaf..2ab92a2 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,11 +1,26 @@ module.exports = { - purge: [], - darkMode: false, // or 'media' or 'class' - theme: { - extend: {}, - }, - variants: { - extend: {}, - }, - plugins: [], + future: { + removeDeprecatedGapUtilities: true, + purgeLayersByDefault: true, + }, + purge: [], + darkMode: 'class', // or 'media' or 'class' + theme: { + extend: { + colors: { + 'koreanbots-blue': '#3366FF', + 'koreanbots-black': '#2C2F33', + 'koreanbots-green': '#21BA45', + 'koreanbots-red': '#DB2828', + 'discord-blurple': '#7289DA', + 'discord-dark': '#2C2F33', + 'discord-black': '#23272A', + 'discord-pink': '#FF73FA' + } + }, + }, + variants: { + extend: {}, + }, + plugins: [], }