From f153c8908527cc668dc387f00dd8037cb5844829 Mon Sep 17 00:00:00 2001 From: SuBroXz11 Date: Tue, 19 May 2026 12:15:42 +0545 Subject: [PATCH] feat: update primary and neutral colors to arcab blue #000fff --- .../templates_share_link_qr/show.html.erb | 8 ++-- tailwind.config.js | 38 +++++++++---------- 2 files changed, 22 insertions(+), 24 deletions(-) diff --git a/app/views/templates_share_link_qr/show.html.erb b/app/views/templates_share_link_qr/show.html.erb index 322be0c2..d6396b26 100644 --- a/app/views/templates_share_link_qr/show.html.erb +++ b/app/views/templates_share_link_qr/show.html.erb @@ -118,7 +118,7 @@ } [contenteditable="true"]:focus { - outline: 1px dashed #291334; + outline: 1px dashed #0000ff; outline-offset: 6px; } @@ -135,9 +135,9 @@ height: 3rem; padding-left: 1rem; padding-right: 1rem; - border: 1px solid #291334; + border: 1px solid #0000ff; border-radius: 1.9rem; - background-color: #291334; + background-color: #0000ff; color: #ffffff; font-size: 1rem; font-weight: 500; @@ -160,7 +160,7 @@ } .print-button:focus-visible { - outline: 2px solid #291334; + outline: 2px solid #0000ff; outline-offset: 2px; } diff --git a/tailwind.config.js b/tailwind.config.js index d6c5b9bf..f1ae5ad3 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,25 +1,23 @@ module.exports = { - plugins: [ - require('daisyui') - ], + plugins: [require("daisyui")], daisyui: { themes: [ { 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' - } - } - ] - } -} + "color-scheme": "light", + primary: "#000fff", + secondary: "#ef9fbc", + accent: "#eeaf3a", + neutral: "#000fff", + "base-100": "#faf7f5", + "base-200": "#efeae6", + "base-300": "#e7e2df", + "base-content": "#291334", + "--rounded-btn": "1.9rem", + "--tab-border": "2px", + "--tab-radius": ".5rem", + }, + }, + ], + }, +};