From 79a7742bd206b197a85694ea92fc96c8cdcc4e49 Mon Sep 17 00:00:00 2001 From: "terawuth.th" Date: Fri, 23 May 2025 14:06:43 +0700 Subject: [PATCH] feat: add CSS variables for Password Modal styling --- rp-variables.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/rp-variables.css b/rp-variables.css index 3da641c..bf9b0aa 100644 --- a/rp-variables.css +++ b/rp-variables.css @@ -87,6 +87,16 @@ /* Tooltip */ --rp-tooltip-background-color: #1c2024; --rp-tooltip-border-radius: var(--rp-border-radius); + /* Password Modal */ + --rp-password-background-color: #ffffff; + --rp-password-title-font-color: #1c2024; + --rp-password-content-font-color: #596673; + --rp-password-input-border-color: #e2e6e9; + --rp-password-input-placeholder-color: #c6ccd2; + --rp-password-input-font-color: #000000; + --rp-password-button-background-color: #34affc; + --rp-password-button-font-color: #ffffff; + --rp-password-button-border-color: #0995ee; /* Container */ --rp-container-focus-outline-width: 0px; --rp-container-focus-outline-color: var(--rp-primary-color);