Skip to content

Commit

Permalink
Updated bg and text-colors
Browse files Browse the repository at this point in the history
  • Loading branch information
pateldivyesh1323 committed Oct 11, 2023
1 parent e1b66cc commit 6bd4a5e
Show file tree
Hide file tree
Showing 6 changed files with 178 additions and 95 deletions.
90 changes: 79 additions & 11 deletions web/assets/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ body {
}

body.dark {
background-color: #0f0f0f;
background-color: #181A1B;
}

main {
Expand All @@ -34,6 +34,10 @@ a {
text-decoration: underline;
}

.dark a {
color: #9551EC;
}

.cel-logo {
height: 24px;
}
Expand All @@ -48,7 +52,7 @@ a {
}

.dark .navbar{
background-color: black;
background-color: #1D1F21;
}

.navbar .title {
Expand All @@ -64,7 +68,7 @@ a {
}

.dark .navbar .divider {
background-color: rgba(255, 255, 255, 0.88);
background-color: #FFFFFF1F;
}

.navbar .logo {
Expand All @@ -88,8 +92,8 @@ a {
color: rgba(0, 0, 0, 0.5);
}

.dark>.navbar span {
color: rgb(180, 180, 180)
.dark .navbar span {
color: rgb(255, 255, 255,0.9)
}

.nav-links {
Expand Down Expand Up @@ -118,7 +122,7 @@ a {
}

.dark .nav-divider{
background-color: rgba(255, 255, 255, 0.88);
background-color: #FFFFFF1F;
}

.share-url__container {
Expand All @@ -134,6 +138,11 @@ a {
position: relative;
}

.dark .share-url__container {
background: #212426;
border-color: #34383C;
}

.share-url__input {
display: flex;
width: 220px;
Expand All @@ -146,6 +155,11 @@ a {
border:none;
}

.dark .share-url__input {
background: #212426;
color: #FFFFFFE5;
}

.share-url__tooltip {
color: #3EAA63;
font-size: 12px;
Expand Down Expand Up @@ -178,6 +192,10 @@ a {
cursor: pointer;
}

.dark .share-url__copy{
background:#2B2E31;
}

.nav-link {
display: flex;
justify-content: center;
Expand All @@ -191,7 +209,8 @@ a {
}

.dark .nav-link{
background-color: rgba(132, 71, 209, 0.25);
background-color: #8447D13D;
color: #9551EC;
}

/* Containers */
Expand Down Expand Up @@ -225,6 +244,10 @@ a {
overflow: visible;
}

.dark .editor {
border-color: #2A2D32;
}

.editor__header {
padding: 1rem;
border-bottom: 1px solid #E3E3E3;
Expand All @@ -233,6 +256,11 @@ a {
align-items: center;
}

.dark .editor__header {
background: #25282C;
border-bottom-color: #33373D;
}

.editor__header .title {
color: #34454C;
font-weight: 500;
Expand All @@ -241,7 +269,7 @@ a {
}

.dark .editor__header .title {
color: #e7f8ff;
color: #FFFFFF;
}

.editor__header .description {
Expand All @@ -251,7 +279,7 @@ a {
}

.dark .editor__header .description {
color: #92dcff;
color: #FFFFFFCC;
}
.editor>.editor__input {
height: 100%;
Expand Down Expand Up @@ -296,6 +324,10 @@ a {
height: 32px;
}

.dark .button{
background: #9551EC;
}

.button:hover {
background: #925CD6;
}
Expand All @@ -319,7 +351,7 @@ footer {
}

.dark footer {
color: rgba(255, 255, 255, 0.5);
color: #FFFFFFE5;
}

footer .version {
Expand All @@ -329,20 +361,28 @@ footer .version {
}

.dark footer .version{
background-color: #2c2c2c;
background-color: #202D32;
}

.version a {
text-decoration: none;
color: inherit;
}

.dark .version a {
color: #FFFFFFE5;
}

footer .langdef {
padding: 4px 4px;
border-radius: 4px;
margin-left: auto;
}

.dark footer .langdef {
color: #FFFFFF29;
}

/* Ace Custom */

.ace-clouds .ace_marker-layer .ace_active-line {
Expand Down Expand Up @@ -428,6 +468,34 @@ footer .langdef {
text-overflow: ellipsis;
}

.dark .nice-select .option.focus, .nice-select .option.selected.focus {
background: #2A2D32;
}

.dark .nice-select {
background: #25282C;
color: #ffffff;
border-color: #383C43;
}

.dark .nice-select .nice-select-dropdown {
background: #2A2D32;
border: 1px solid #383C43;
}

.dark .nice-select .option {
color: #FFFFFFD9;

}

.dark .nice-select .option.disabled {
color:#ffffff;
}

.dark .nice-select .option:hover {
background-color: #8447D114;
}

.nice-select .list {
max-height: 50vh;
overflow-y: scroll;
Expand Down
Loading

0 comments on commit 6bd4a5e

Please sign in to comment.