Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Input Search Dark Mode Friendly #5883

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/reusecore/Search/searchbox.style.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ export const SearchWrapper = styled.div`
border-radius: 5px;
border: 1px solid ${(props) => props.theme.headingColor};
background-color: ${(props) => props.theme.shadowLightColor};

/*Changes color for the text*/
color: ${(props) => props.theme.textColor};
leecalcote marked this conversation as resolved.
Show resolved Hide resolved

&:focus {
/* border-color: ${(props) => props.theme.primaryColor}; */
border-color: #fff;
Expand Down
8 changes: 4 additions & 4 deletions src/theme/app/themeStyles.js
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We wouldn't want to change theme colors @THEBOSS0369

Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ export const darktheme = {
scrollbarColor: "#00d3a9",

// white
primaryColor: "#FFFFFF",
primaryColor: "#00d3a9",

// silver chalice (light gray)
primaryLightColor: "#2C2C2C",
Expand All @@ -265,14 +265,14 @@ export const darktheme = {
// Teal Blue
tertiaryColorTwo: "#477E96",

headingColor: "#000000",
headingColor: "#111111",

// light slate gray (medium gray)
textColor: "#000000",
textColor: "#ffffff",
shadowColor: "rgba(255, 255, 255, 0.05)",

// platinum (light gray)
shadowLightColor: "#E6E6E6",
shadowLightColor: "#333333",

// dark gray
shadowDarkColor: "#484848",
Expand Down
Loading