From 40b1a4ac297a4e5a9616b14d43f620b730772a8d Mon Sep 17 00:00:00 2001 From: axolotle Date: Mon, 19 Aug 2024 19:43:20 +0200 Subject: [PATCH] feat: add 'omg' custom theme --- tailwind.config.js | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/tailwind.config.js b/tailwind.config.js index e0bedf1..b8d1142 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -69,6 +69,29 @@ module.exports = { '--rounded-btn': '0.1875rem', '--border-btn': '1px', }, + omg: { + primary: '#ffe066', + secondary: '#eebefa', + accent: '#bac8ff', + neutral: '#e7ebf3', + info: '#a5d8ff', + success: '#63e6be', + warning: '#ff922b', + error: '#fcc2d7', + 'base-100': '#343a40', + 'base-200': '#6f7479', + 'base-300': '#212529', + 'base-content': '#f1f3f5', + '--rounded-box': '.13rem', + '--rounded-btn': '.3rem', + '--rounded-badge': '1.9rem', + '--animation-btn': '0.25s', + '--animation-input': '0.2s', + '--btn-focus-scale': '0.95', + '--border-btn': '1px', + '--tab-border': '1px', + '--tab-radius': '0.5rem', + }, }, ], },