Skip to content

Commit 29cd894

Browse files
committed
asddd
1 parent 9fab24b commit 29cd894

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

Hack(2);/script.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ function addWarningToOutput(text)
9898
{
9999
if(CurrentTheme == ColorMode.DARK)
100100
{
101-
addToOutput("<span class=\"warning dark-theme\">WARNING: " + text + "</span>");
101+
addToOutput("<span class=\"warning\">WARNING: " + text + "</span>");
102102
}
103103
else
104104
{
@@ -109,7 +109,7 @@ function addErrorToOutput(text)
109109
{
110110
if(CurrentTheme == ColorMode.DARK)
111111
{
112-
addToOutput("<span class=\"error dark-theme\">ERROR: " + text + "</span>");
112+
addToOutput("<span class=\"error\">ERROR: " + text + "</span>");
113113
}
114114
else
115115
{
@@ -120,7 +120,7 @@ function addUserInputToOutput(text)
120120
{
121121
if(CurrentTheme == ColorMode.DARK)
122122
{
123-
addToOutput("<span class=\"sysmsg dark-theme\">></span>" + text);
123+
addToOutput("<span class=\"sysmsg\">></span>" + text);
124124
}
125125
else
126126
{

Hack(2);/styles.css

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ body
55
margin: 0;
66
font-family: Arial, sans-serif;
77
background-color: rgb(220, 220, 220);
8-
color: rgb(0, 30, 0);
8+
color: rgb(0, 165, 0);
99
transition: background-color 0.3s, color 0.3s;
1010
}
1111
body.dark-theme
1212
{
1313
background-color: rgb(0, 30, 0);
14-
color: rgb(0, 255, 0);
14+
color: rgb(30, 255, 30);
1515
}
1616

1717

@@ -137,7 +137,7 @@ button:hover
137137

138138
.error
139139
{
140-
color: rgb(160, 0, 0);
140+
color: rgb(195, 0, 0);
141141
}
142142
.dark-theme .error
143143
{
@@ -146,7 +146,7 @@ button:hover
146146

147147
.warning
148148
{
149-
color: rgb(160, 160, 0);
149+
color: rgb(195, 195, 0);
150150
}
151151
.dark-theme .warning
152152
{
@@ -155,11 +155,11 @@ button:hover
155155

156156
.sysmsg
157157
{
158-
color: rgb(30, 80, 160)
158+
color: rgb(0, 0, 195);
159159
}
160160
.dark-theme .sysmsg
161161
{
162-
color: rgb(60, 110, 255)
162+
color: rgb(30, 30, 255);
163163
}
164164

165165

0 commit comments

Comments
 (0)