Skip to content

Commit cfa6df3

Browse files
committed
Changed colors for readability
1 parent 2bc083c commit cfa6df3

File tree

3 files changed

+32
-7
lines changed

3 files changed

+32
-7
lines changed

src/wwwroot/css/site.css

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,13 +113,23 @@ a.navbar-brand .icon-banner {
113113
}
114114
.jwt-decoder-container .jwt-decoded {
115115
text-wrap: auto;
116+
background-color: #000000;
116117
}
117118
.jwt-decoder-container .jwt-decoded.jwt-header {
118-
color: #fc3939;
119+
color: rgb(253.5223880597, 157.4776119403, 157.4776119403);
119120
}
120121
.jwt-decoder-container .jwt-decoded.jwt-payload {
121-
color: #13b955;
122+
color: #46ec88;
122123
}
123124
.jwt-decoder-container .jwt-decoded.jwt-signature {
124-
color: #efa31d;
125+
color: rgb(245.7438016529, 201.7768595041, 124.2561983471);
126+
}
127+
.jwt-decoder-container .jwt-input-editable .text-danger {
128+
color: rgb(253.5223880597, 157.4776119403, 157.4776119403) !important;
129+
}
130+
.jwt-decoder-container .jwt-input-editable .text-success {
131+
color: #46ec88 !important;
132+
}
133+
.jwt-decoder-container .jwt-input-editable .text-warning {
134+
color: rgb(245.7438016529, 201.7768595041, 124.2561983471) !important;
125135
}

src/wwwroot/css/site.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/wwwroot/css/site.scss

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,17 +127,32 @@ a.navbar-brand {
127127

128128
.jwt-decoded {
129129
text-wrap: auto;
130+
background-color: #000000;
130131

131132
&.jwt-header {
132-
color: #fc3939;
133+
color: lighten(#fc3939, 20%);
133134
}
134135

135136
&.jwt-payload {
136-
color: #13b955;
137+
color: lighten(#13b955, 20%);
137138
}
138139

139140
&.jwt-signature {
140-
color: #efa31d;
141+
color: lighten(#efa31d, 20%);
142+
}
143+
}
144+
145+
.jwt-input-editable {
146+
.text-danger {
147+
color: lighten(#fc3939, 20%) !important;
148+
}
149+
150+
.text-success {
151+
color: lighten(#13b955, 20%) !important;
152+
}
153+
154+
.text-warning {
155+
color: lighten(#efa31d, 20%) !important;
141156
}
142157
}
143158
}

0 commit comments

Comments
 (0)