Skip to content

Commit 9916aee

Browse files
committed
Re-added the lighter color variants for color-matching the token parts
1 parent 764acd1 commit 9916aee

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

src/wwwroot/css/site.css

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -115,25 +115,25 @@ a.navbar-brand .icon-banner {
115115
text-wrap: auto;
116116
}
117117
.jwt-decoder-container .jwt-decoded.jwt-header {
118-
border: 4px solid #fc3939;
118+
border: 4px solid rgb(253.5223880597, 157.4776119403, 157.4776119403);
119119
}
120120
.jwt-decoder-container .jwt-decoded.jwt-payload {
121-
border: 4px solid #13b955;
121+
border: 4px solid #46ec88;
122122
}
123123
.jwt-decoder-container .jwt-decoded.jwt-signature {
124-
border: 4px solid #efa31d;
124+
border: 4px solid rgb(245.7438016529, 201.7768595041, 124.2561983471);
125125
}
126126
.jwt-decoder-container .jwt-input-editable {
127127
word-wrap: anywhere;
128128
}
129129
.jwt-decoder-container .jwt-input-editable .text-danger {
130-
color: #fc3939 !important;
130+
color: rgb(253.5223880597, 157.4776119403, 157.4776119403) !important;
131131
}
132132
.jwt-decoder-container .jwt-input-editable .text-success {
133-
color: #13b955 !important;
133+
color: #46ec88 !important;
134134
}
135135
.jwt-decoder-container .jwt-input-editable .text-warning {
136-
color: #efa31d !important;
136+
color: rgb(245.7438016529, 201.7768595041, 124.2561983471) !important;
137137
}
138138
.jwt-decoder-container .json-content, .jwt-decoder-container .jwt-input-editable {
139139
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

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: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -129,31 +129,31 @@ a.navbar-brand {
129129
text-wrap: auto;
130130

131131
&.jwt-header {
132-
border: 4px solid #fc3939;
132+
border: 4px solid lighten(#fc3939, 20%);
133133
}
134134

135135
&.jwt-payload {
136-
border: 4px solid #13b955;
136+
border: 4px solid lighten(#13b955, 20%);
137137
}
138138

139139
&.jwt-signature {
140-
border: 4px solid #efa31d;
140+
border: 4px solid lighten(#efa31d, 20%);
141141
}
142142
}
143143

144144
.jwt-input-editable {
145145
word-wrap: anywhere;
146146

147147
.text-danger {
148-
color: #fc3939 !important;
148+
color: lighten(#fc3939, 20%) !important;
149149
}
150150

151151
.text-success {
152-
color: #13b955 !important;
152+
color: lighten(#13b955, 20%) !important;
153153
}
154154

155155
.text-warning {
156-
color: #efa31d !important;
156+
color: lighten(#efa31d, 20%) !important;
157157
}
158158
}
159159

0 commit comments

Comments
 (0)