Skip to content

Commit

Permalink
Fix dark theme on public website
Browse files Browse the repository at this point in the history
  • Loading branch information
EtienneLem committed Jun 3, 2022
1 parent b772747 commit f996d91
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/emoji-mart-website/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
--background-color: #f4f4f4;
--dark-background-color: rgba(0,0,0, .04);
--select-background-color: #fff;
--color-border: rgba(0, 0, 0, .05);
--input-color: rgba(0, 0, 0, .05);

--light-shadow: rgba(255,255,255, .6);
--shadow-color: 0deg 0% 0%;
Expand All @@ -22,7 +22,7 @@
--background-color: #202124;
--dark-background-color: rgba(0,0,0, .1);
--select-background-color: rgb(21, 22, 23);
--color-border: rgba(255, 255, 255, .1);
--input-color: rgba(255, 255, 255, .1);
--light-shadow: rgba(255,255,255, .02);
}

Expand Down Expand Up @@ -52,7 +52,7 @@ input {
outline: 0;
padding: 10px;
border-radius: 10px;
background-color: var(--color-border);
background-color: var(--input-color);
transition-duration: var(--duration);
transition-property: background-color, box-shadow;
transition-timing-function: var(--easing);
Expand All @@ -74,7 +74,7 @@ dialog {
padding: 1em;
color: inherit;
border-radius: 10px;
border: 1px solid var(--color-border);
border: 1px solid var(--input-color);
background-color: var(--select-background-color);

p { margin: 1em 0 }
Expand Down

0 comments on commit f996d91

Please sign in to comment.