-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
326 additions
and
391 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,56 @@ | ||
:root { | ||
/* Button Colors */ | ||
--button-bg: #ffffff; /* Default button background */ | ||
--button-text: var(--Greyscale-900, #2b2f33); /* Default button text */ | ||
--button-border: var(--Greyscale-400, #a2a7ae); /* Default button border */ | ||
--button-hover-bg: #f5f5f5; /* Hover button background */ | ||
--button-hover-text: var(--Greyscale-900, #2b2f33); /* Hover button text */ | ||
--button-disabled-bg: #ffffff; /* Disabled button background */ | ||
--button-disabled-text: var(--Greyscale-700, #a2a7ae); /* Disabled button text */ | ||
--button-disabled-border: var(--Greyscale-100, #f5f7fb); /* Disabled button border */ | ||
|
||
/* Input Field Colors */ | ||
--input-bg: #ffffff; /* Input field background */ | ||
--input-text: var(--Greyscale-900, #2b2f33); /* Input text color */ | ||
--input-border: var(--Greyscale-400, #D0D5DD); /* Input border color */ | ||
--input-hover-border: var(--Greyscale-500, #868c95); /* Input border on hover */ | ||
--input-focus-border: var(--Greyscale-900, #2b2f33); /* Input border on focus */ | ||
|
||
/* Text Colors */ | ||
--text-primary: var(--Greyscale-900, #2b2f33); /* Primary text */ | ||
--text-secondary: var(--Greyscale-500, #868c95); /* Secondary text */ | ||
--text-error: #ff4c4c; /* Error text */ | ||
--text-disabled: var(--Greyscale-700, #a2a7ae); /* Disabled text */ | ||
|
||
/* Border Colors */ | ||
--border-default: var(--Greyscale-400, #a2a7ae); /* Default border */ | ||
--border-hover: var(--Greyscale-500, #868c95); /* Hover border */ | ||
--border-disabled: var(--Greyscale-100, #f5f7fb); /* Disabled border */ | ||
|
||
/* Card Colors */ | ||
--auth-card-bg: var(--Greyscale-20, #f5f7fb); /* Default authCard background */ | ||
--auth-card-border: var(--Greyscale-100, #ebedf2); /* Default authCard border */ | ||
--auth-card-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Default authCard shadow */ | ||
--auth-card-radius: 15px; /* Default authCard border radius */ | ||
/* Button Colors */ | ||
--button-bg: #ffffff; /* Default button background */ | ||
--button-text: var(--Greyscale-900, #2b2f33); /* Default button text */ | ||
--button-border: var(--Greyscale-400, #a2a7ae); /* Default button border */ | ||
--button-hover-bg: #f5f5f5; /* Hover button background */ | ||
--button-hover-text: var(--Greyscale-900, #2b2f33); /* Hover button text */ | ||
--button-disabled-bg: #ffffff; /* Disabled button background */ | ||
--button-disabled-text: var( | ||
--Greyscale-700, | ||
#a2a7ae | ||
); /* Disabled button text */ | ||
--button-disabled-border: var( | ||
--Greyscale-100, | ||
#f5f7fb | ||
); /* Disabled button border */ | ||
|
||
/* Accent Colors */ | ||
--accent-color: var(--Blue-500, #4c48ff); | ||
} | ||
|
||
/* Input Field Colors */ | ||
--input-bg: #ffffff; /* Input field background */ | ||
--input-text: var(--Greyscale-900, #2b2f33); /* Input text color */ | ||
--input-border: var(--Greyscale-400, #d0d5dd); /* Input border color */ | ||
--input-hover-border: var( | ||
--Greyscale-500, | ||
#868c95 | ||
); /* Input border on hover */ | ||
--input-focus-border: var( | ||
--Greyscale-900, | ||
#2b2f33 | ||
); /* Input border on focus */ | ||
|
||
/* Text Colors */ | ||
--text-primary: var(--Greyscale-900, #2b2f33); /* Primary text */ | ||
--text-secondary: var(--Greyscale-500, #868c95); /* Secondary text */ | ||
--text-error: #ff4c4c; /* Error text */ | ||
--text-disabled: var(--Greyscale-700, #a2a7ae); /* Disabled text */ | ||
|
||
/* Border Colors */ | ||
--border-default: var(--Greyscale-400, #a2a7ae); /* Default border */ | ||
--border-hover: var(--Greyscale-500, #868c95); /* Hover border */ | ||
--border-disabled: var(--Greyscale-100, #f5f7fb); /* Disabled border */ | ||
|
||
/* Card Colors */ | ||
--auth-card-bg: var( | ||
--Greyscale-20, | ||
#f5f7fb | ||
); /* Default authCard background */ | ||
--auth-card-border: var( | ||
--Greyscale-100, | ||
#ebedf2 | ||
); /* Default authCard border */ | ||
--auth-card-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Default authCard shadow */ | ||
--auth-card-radius: 15px; /* Default authCard border radius */ | ||
|
||
/* Accent Colors */ | ||
--accent-color: var(--Blue-500, #4c48ff); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.