-
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.
Merge pull request #59 from confusiontech/implement_2024_identity
Implement 2024 identity
- Loading branch information
Showing
8 changed files
with
93 additions
and
41 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,27 @@ | ||
export const PRIMARY_COLOR = '#EB148B'; | ||
export const SECONDARY_COLOR = 'black'; | ||
const IDENTITY_COLOR = '#E0FA4E'; // 2024 | ||
const IDENTITY_COLOR_2 = '#b62682'; | ||
const LIGHT_GREY = '#DDDDDD'; | ||
// const BLUE_LINK = '#3366BB'; | ||
|
||
export const CREAM_COLOR = '#FFF4E2'; | ||
export const LIGHT_GREY = '#DDDDDD'; | ||
export const BLUE_LINK = '#3366BB'; | ||
export const PRIMARY_COLOR = IDENTITY_COLOR; | ||
export const SECONDARY_COLOR = IDENTITY_COLOR_2; | ||
|
||
export const TOUCHABLE_UNDERLAY_COLOR = LIGHT_GREY; | ||
export const LINK_COLOR = PRIMARY_COLOR; | ||
export const LAYOUT_COLOR = 'transparent'; | ||
|
||
export const LINK_COLOR = IDENTITY_COLOR_2; | ||
|
||
export const BUTTON_COLOR = PRIMARY_COLOR; | ||
export const BUTTON_TEXT_COLOR = 'white'; | ||
export const BUTTON_ACTIVE_COLOR = SECONDARY_COLOR; | ||
export const LAYOUT_COLOR = CREAM_COLOR; | ||
export const BUTTON_TEXT_COLOR = SECONDARY_COLOR; | ||
export const BUTTON_ACTIVE_TEXT_COLOR = PRIMARY_COLOR; | ||
|
||
export const GRID_BUTTON_COLOR = 'transparent'; | ||
export const GRID_SELECTED_BUTTON_COLOR = PRIMARY_COLOR; | ||
export const GRID_TEXT_COLOR = SECONDARY_COLOR; | ||
export const GRID_SELECTED_TEXT_COLOR = SECONDARY_COLOR; | ||
|
||
export const SPACE_NUMBER_CIRCLE_COLOR = PRIMARY_COLOR; | ||
export const SPACE_NUMBER_TEXT_COLOR = SECONDARY_COLOR; | ||
|
||
export const FAVORITE_BUTTON_COLOR = IDENTITY_COLOR_2; |