Skip to content

Commit

Permalink
Remove even lines background color. Reduce highlight color.
Browse files Browse the repository at this point in the history
  • Loading branch information
jlambe committed Dec 9, 2024
1 parent d8a4b6a commit da5f48f
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions resources/views/exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
--color-red-800: hsl(342, 38%, 25%);
--color-red-900: hsl(323, 36%, 20%);

--color-yellow-300: rgb(255, 244, 200);
--color-yellow-500: rgb(255, 226, 115);

--space-none: 0;
Expand Down Expand Up @@ -219,12 +220,12 @@
.line {
display: inline-block;
width: 100%;
background: var(--color-gray-300);
background: var(--color-gray-100);
line-height: 1.625;
}

.line:nth-of-type(even) {
background: var(--color-white);
background: var(--color-gray-100);
}

.line:hover {
Expand All @@ -233,7 +234,7 @@

.current-line,
.line.current-line {
background: var(--color-yellow-500);
background: var(--color-yellow-300);
}

.line-number {
Expand All @@ -245,7 +246,7 @@
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
border-right: 1px solid var(--color-blue-500);
border-right: 1px solid var(--color-blue-400);
text-align: right;
}

Expand Down Expand Up @@ -372,6 +373,10 @@
}

@media screen and (min-width: 1024px) {
:root {
--sidebar-width: 128px;
}

body {
margin: var(--space-md);
}
Expand Down Expand Up @@ -469,7 +474,7 @@
}

.line:nth-of-type(even) {
background: var(--color-blue-900);
background: var(--color-blue-800);
}

.line:hover {
Expand All @@ -478,7 +483,7 @@

.current-line,
.line.current-line {
background: var(--color-yellow-500);
background: var(--color-yellow-300);
}

.line-number {
Expand Down Expand Up @@ -521,7 +526,7 @@

.frame .current-line,
.frame .line.current-line {
background: var(--color-yellow-500);
background: var(--color-yellow-300);
}

.frame .current-line .line-number,
Expand Down

0 comments on commit da5f48f

Please sign in to comment.