From e45bad97f551e27a258f0a24bb8e6831ea0010d4 Mon Sep 17 00:00:00 2001 From: Alex Turchyn Date: Tue, 30 May 2023 20:00:40 +0300 Subject: [PATCH] use own theme --- app/views/layouts/application.html.erb | 2 +- tailwind.config.js | 16 +++++++++++++--- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index d4da94e3..122d6e50 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -1,5 +1,5 @@ - + Docuseal diff --git a/tailwind.config.js b/tailwind.config.js index a18baed5..d6c5b9bf 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -5,9 +5,19 @@ module.exports = { daisyui: { themes: [ { - cupcake: { - ...require('daisyui/src/colors/themes')['[data-theme=cupcake]'], - primary: '#E4E0E1' + docuseal: { + 'color-scheme': 'light', + primary: '#e4e0e1', + secondary: '#ef9fbc', + accent: '#eeaf3a', + neutral: '#291334', + 'base-100': '#faf7f5', + 'base-200': '#efeae6', + 'base-300': '#e7e2df', + 'base-content': '#291334', + '--rounded-btn': '1.9rem', + '--tab-border': '2px', + '--tab-radius': '.5rem' } } ]