-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #575 from Groww-OSS/develop
Develop Merge PR | 25 Nov
- Loading branch information
Showing
41 changed files
with
395 additions
and
322 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -136,7 +136,7 @@ | |
} | ||
|
||
.card { | ||
border-radius: 8px; | ||
border-radius: 5px; | ||
} | ||
|
||
.clickable-text { | ||
|
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,5 +1,7 @@ | ||
<!DOCTYPE html> | ||
<head> | ||
<link href="https://cdn.jsdelivr.net/npm/@groww-tech/[email protected]/dist/index.min.css" rel="stylesheet"> | ||
<link href="./theme.css" rel="stylesheet" /> | ||
<link href="https://cdn.jsdelivr.net/npm/@groww-tech/[email protected]/dist/index.min.css" rel="stylesheet"> | ||
|
||
</head> | ||
</html> |
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 |
---|---|---|
@@ -0,0 +1,70 @@ | ||
|
||
html { | ||
/* global colors */ | ||
--black: #121212; | ||
--white: #ffffff; | ||
--gray900: #44475b; | ||
--gray800: #696c7c; | ||
--gray700: #7c7e8c; | ||
--gray600: #8f919d; | ||
--gray500: #a1a3ad; | ||
--gray400: #b0b2ba; | ||
--gray300: #c7c8ce; | ||
--gray200: #dddee1; | ||
--gray150: #e9e9eb; | ||
--gray100: #f0f0f2; | ||
--gray50: #f8f8f8; | ||
--green500: #00B386; | ||
--green300: #66e3c4; | ||
--green100: #EBF9F5; | ||
--purple500: #5367ff; | ||
--purple300: #84a4ff; | ||
--purple100: #eef0ff; | ||
--yellow500: #ffb61b; | ||
--yellow100: #fff5e0; | ||
--red500: #eb5b3c; | ||
--red100: #fae9e5; | ||
--overlay00: rgba(18, 18, 18, 0); | ||
--overlay30: rgba(18, 18, 18, 0.3); | ||
--overlay70: rgba(18, 18, 18, 0.7); | ||
/* | ||
*This is a spcl, rather risky variable. | ||
*Only use this color variable at those places where theme token ("backgroundPrimary") usage is not possible (Ex: css psuedo classes) | ||
*/ | ||
--dangerouslySetPrimaryBg: #ffffff; | ||
} | ||
|
||
html[data-theme="dark"] { | ||
/* global colors */ | ||
--black: #121212; | ||
--white: #ffffff; | ||
--gray900: #f8f8f8; | ||
--gray800: #d1d1d1; | ||
--gray700: #b8b8b8; | ||
--gray600: #a0a0a0; | ||
--gray500: #888888; | ||
--gray400: #717171; | ||
--gray300: #595959; | ||
--gray200: #414141; | ||
--gray150: #2e2e2e; | ||
--gray100: #252525; | ||
--gray50: #1b1b1b; | ||
--green500: #0abb92; | ||
--green300: #0b5e49; | ||
--green100: #10362d; | ||
--purple500: #98a4ff; | ||
--purple300: #323c89; | ||
--purple100: #181a2a; | ||
--yellow500: #e7a61a; | ||
--yellow100: #46391d; | ||
--red500: #d55438; | ||
--red100: #411d16; | ||
--overlay00: rgba(18, 18, 18, 0); | ||
--overlay30: rgba(18, 18, 18, 0.3); | ||
--overlay70: rgba(18, 18, 18, 0.7); | ||
/* | ||
*This is a spcl, rather risky variable. | ||
*Only use this color variable at those places where theme token ("backgroundPrimary") usage is not possible (Ex: css psuedo classes) | ||
*/ | ||
--dangerouslySetPrimaryBg: #121212; | ||
} |
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
Oops, something went wrong.