-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleaned up accent color logic and theming functions. Started theming …
…manage users tab
- Loading branch information
1 parent
d27f7f9
commit d5ab4fc
Showing
11 changed files
with
143 additions
and
53 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
.manageUserPrimaryLabel-light { | ||
height: 50px; | ||
color: black; | ||
font-weight: 600; | ||
} | ||
|
||
.manageUserPrimaryLabel-dark { | ||
height: 50px; | ||
color: white; | ||
font-weight: 600; | ||
} | ||
|
||
.manageUserSubmitButton { | ||
border-radius: 10px; | ||
border: none; | ||
font-weight: 600; | ||
padding: 4px 10px; | ||
transition: 0.2s; | ||
} | ||
|
||
.manageUserClearButton { | ||
border-radius: 10px; | ||
background-color: rgb(208, 208, 208); | ||
border: none; | ||
font-weight: 600; | ||
padding: 4px 10px; | ||
transition: 0.2s; | ||
} |
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,3 +1,8 @@ | ||
.tab { | ||
height: 100%; | ||
width: 100%; | ||
} | ||
|
||
.organizerHeader-light { | ||
display: flex; | ||
justify-content: space-between; | ||
|
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,9 +1,15 @@ | ||
export const themeConstants = { | ||
// A default color palette for buttons, in case one isn't provided | ||
light: { | ||
backgroundColor: '#ffffff', | ||
}, | ||
dark: { | ||
backgroundColor: '#1D1743', | ||
}, | ||
accent: { | ||
blue: '#2F80ED', | ||
green: '#219653', | ||
pink: '#EB5757', | ||
yellow: '#F2C94C', | ||
orange: '#F2994A', | ||
}, | ||
}; |
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