-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
16e5f4b
commit cf5dd0f
Showing
5 changed files
with
161 additions
and
3 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
65 changes: 65 additions & 0 deletions
65
utilities_for_me/web_app/client/react/styles/hacker-theme.css
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,65 @@ | ||
.theme-hacker { | ||
font-family: 'Inconsolata', monospace; | ||
/* Base */ | ||
--primary-fill: var(--blue-grey-700); | ||
--primary-complement: var(--light-green-200); | ||
--secondary-fill: var(--blue-grey-800); | ||
--secondary-complement: var(--amber-400); | ||
--emphasis-fill: var(--pink-300); | ||
--emphasis-complement: var(--pink-200); | ||
/* Base Text */ | ||
--text-primary: var(--amber-200); | ||
--text-secondary: var(--blue-grey-200); | ||
--text-muted: var(--grey-300); | ||
--text-emphasis: var(--pink-500); | ||
/* Inputs */ | ||
--input-primary-fill: var(--blue-grey-900); | ||
--input-primary-complement: var(--amber-300); | ||
--input-secondary-fill: var(--grey-200); | ||
--input-secondary-complement: var(--grey-200); | ||
--input-emphasis-fill: var(--grey-300); | ||
--input-emphasis-complement: var(--grey-200); | ||
/* Input Texts */ | ||
--input-text-primary: var(--green-50); | ||
--input-text-secondary: var(--grey-400); | ||
--input-text-muted: var(--grey-100); | ||
--input-text-emphasis: var(--pink-600); | ||
/* Buttons */ | ||
--btn-primary-fill: var(--grey-200); | ||
--btn-primary-complement: var(--gray-600); | ||
--btn-primary-fill-hover: var(--grey-200); | ||
--btn-primary-complement-hover: var(--gray-600); | ||
--btn-primary-fill-disabled: var(--grey-200); | ||
--btn-primary-complement-disabled: var(--gray-600); | ||
--btn-secondary-fill: var(--grey-200); | ||
--btn-secondary-complement: var(--gray-600); | ||
--btn-secondary-fill-hover: var(--grey-200); | ||
--btn-secondary-complement-hover: var(--gray-600); | ||
--btn-secondary-fill-disabled: var(--grey-200); | ||
--btn-secondary-complement-disabled: var(--gray-600); | ||
--btn-emphasis-fill: var(--grey-200); | ||
--btn-emphasis-complement: var(--gray-600); | ||
--btn-emphasis-fill-hover: var(--grey-200); | ||
--btn-emphasis-complement-hover: var(--gray-600); | ||
--btn-emphasis-fill-disabled: var(--grey-200); | ||
--btn-emphasis-complement-disabled: var(--gray-600); | ||
/* Button Texts */ | ||
--btn-text-primary: var(--gray-600); | ||
--btn-text-primary-hover: var(--gray-600); | ||
--btn-text-primary-disabled: var(--gray-600); | ||
--btn-text-secondary: var(--gray-600); | ||
--btn-text-secondary-hover: var(--gray-600); | ||
--btn-text-secondary-disabled: var(--gray-600); | ||
--btn-text-emphasis: var(--gray-600); | ||
--btn-text-emphasis-hover: var(--gray-600); | ||
--btn-text-emphasis-disabled: var(--gray-600); | ||
/* Components */ | ||
--comp-primary-fill: var(--amber-300); | ||
--comp-secondary-fill: var(--green-100); | ||
--comp-emphasis-fill: var(--pink-600); | ||
/* Component Texts */ | ||
--comp-text-primary: var(--blue-grey-700); | ||
--comp-text-secondary: var(--blue-grey-500); | ||
--comp-text-muted: var(--grey-300); | ||
--comp-text-emphasis: var(--pink-500); | ||
} |
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
77 changes: 77 additions & 0 deletions
77
utilities_for_me/web_app/client/react/styles/tree-theme.css
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,77 @@ | ||
.theme-tree { | ||
font-family: 'Noto Sans HK', sans-serif; | ||
|
||
/* Base */ | ||
--primary-fill: var(--brown-400); | ||
--primary-complement: var(--green-800); | ||
--secondary-fill: var(--brown-500); | ||
--secondary-complement: var(--green-500); | ||
--emphasis-fill: var(--pink-300); | ||
--emphasis-complement: var(--pink-200); | ||
|
||
/* Base Text */ | ||
--text-primary: var(--green-50); | ||
--text-secondary: var(--green-400); | ||
--text-muted: var(--grey-300); | ||
--text-emphasis: var(--green-500); | ||
|
||
/* Inputs */ | ||
--input-primary-fill: var(--brown-300); | ||
--input-primary-complement: var(--green-500); | ||
--input-secondary-fill: var(--grey-200); | ||
--input-secondary-complement: var(--grey-200); | ||
--input-emphasis-fill: var(--grey-300); | ||
--input-emphasis-complement: var(--grey-200); | ||
|
||
/* Input Texts */ | ||
--input-text-primary: var(--green-50); | ||
--input-text-secondary: var(--grey-400); | ||
--input-text-muted: var(--grey-100); | ||
--input-text-emphasis: var(--pink-600); | ||
|
||
/* Buttons */ | ||
--btn-primary-fill: var(--grey-200); | ||
--btn-primary-complement: var(--gray-600); | ||
--btn-primary-fill-hover: var(--grey-200); | ||
--btn-primary-complement-hover: var(--gray-600); | ||
--btn-primary-fill-disabled: var(--grey-200); | ||
--btn-primary-complement-disabled: var(--gray-600); | ||
|
||
--btn-secondary-fill: var(--grey-200); | ||
--btn-secondary-complement: var(--gray-600); | ||
--btn-secondary-fill-hover: var(--grey-200); | ||
--btn-secondary-complement-hover: var(--gray-600); | ||
--btn-secondary-fill-disabled: var(--grey-200); | ||
--btn-secondary-complement-disabled: var(--gray-600); | ||
|
||
--btn-emphasis-fill: var(--grey-200); | ||
--btn-emphasis-complement: var(--gray-600); | ||
--btn-emphasis-fill-hover: var(--grey-200); | ||
--btn-emphasis-complement-hover: var(--gray-600); | ||
--btn-emphasis-fill-disabled: var(--grey-200); | ||
--btn-emphasis-complement-disabled: var(--gray-600); | ||
|
||
/* Button Texts */ | ||
--btn-text-primary: var(--gray-600); | ||
--btn-text-primary-hover: var(--gray-600); | ||
--btn-text-primary-disabled: var(--gray-600); | ||
|
||
--btn-text-secondary: var(--gray-600); | ||
--btn-text-secondary-hover: var(--gray-600); | ||
--btn-text-secondary-disabled: var(--gray-600); | ||
|
||
--btn-text-emphasis: var(--gray-600); | ||
--btn-text-emphasis-hover: var(--gray-600); | ||
--btn-text-emphasis-disabled: var(--gray-600); | ||
|
||
/* Components */ | ||
--comp-primary-fill: var(--green-400); | ||
--comp-secondary-fill: var(--green-100); | ||
--comp-emphasis-fill: var(--pink-600); | ||
|
||
/* Component Texts */ | ||
--comp-text-primary: var(--brown-700); | ||
--comp-text-secondary: var(--brown-800); | ||
--comp-text-muted: var(--grey-300); | ||
--comp-text-emphasis: var(--brown-500); | ||
} |