Skip to content

Commit 27b036a

Browse files
committedDec 22, 2022
fixxed 404 theme
1 parent 8fa8a17 commit 27b036a

File tree

2 files changed

+12
-14
lines changed

2 files changed

+12
-14
lines changed
 

‎404.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,14 @@
55
<title>Funty.org - Error 404</title>
66
<script src="https://kit.fontawesome.com/e818a9840c.js" crossorigin="anonymous"></script>
77
<link rel="icon" href="./assets/logo.png">
8+
<link rel="stylesheet" href="./assets/styles/themes.css">
89
<link rel="stylesheet" href="./assets/styles/index.css">
910
<link rel="stylesheet" href="./assets/styles/404.css">
1011
<script src="./assets/scripts/404.js"></script>
1112
<meta name="author" content="Funty"/>
1213
<meta name="description" content="404 error page"/>
1314
</head>
14-
<body class="darkmode">
15+
<body class="theme-default">
1516
<a id="cornerCounter" class="rainbow text"></a>
1617
<div id="containerDiv" class="container">
1718
<h1 class="title">404</h1>

‎assets/styles/themes.css

+10-13
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,4 @@
11
/* THEMES */
2-
.theme-funty {
3-
--primary-color: #FF9C3F;
4-
--text-color: #ffb773;
5-
--higlight-color: #ffc38b;
6-
--shadow-color: #bb5a00;
7-
8-
--background-color: linear-gradient(180deg, #F9FDF7, #228478, #0E343F, #071425, #0A1421, #2A1D27, #52272C, #8B2E2B, #DD8243) scroll;
9-
--container-color: rgb(28, 28, 28, 0.6);
10-
--container-inner-color: rgb(50, 50, 50, 0.2);
11-
--container-highlight-color: rgb(55, 55, 55, 0.6);
12-
}
132

143
.theme-default {
154
/* ORIGINAL */
@@ -22,8 +11,16 @@
2211
--container-color: rgb(28, 28, 28);
2312
--container-inner-color: rgb(50, 50, 50);
2413
--container-highlight-color: rgb(55, 55, 55);
25-
2614
}
2715

28-
.lightmode {
16+
.theme-funty {
17+
--primary-color: #FF9C3F;
18+
--text-color: #ffb773;
19+
--higlight-color: #ffc38b;
20+
--shadow-color: #bb5a00;
21+
22+
--background-color: linear-gradient(180deg, #F9FDF7, #228478, #0E343F, #071425, #0A1421, #2A1D27, #52272C, #8B2E2B, #DD8243) scroll;
23+
--container-color: rgb(28, 28, 28, 0.6);
24+
--container-inner-color: rgb(50, 50, 50, 0.2);
25+
--container-highlight-color: rgb(55, 55, 55, 0.6);
2926
}

0 commit comments

Comments
 (0)