Skip to content

Commit

Permalink
Change: ダークテーマベースに (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenc-nanashi authored Nov 9, 2024
1 parent 2d40d74 commit df19b99
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 4 deletions.
4 changes: 3 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
<!doctype html>
<html lang="ja">
<html lang="ja" class="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/favicon.svg" />
<link rel="apple-touch-icon" href="/favicon.svg" />
<title>Voicevox Preview</title>
</head>
<body>
Expand Down
21 changes: 21 additions & 0 deletions public/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ const joinUrl = (path: string) =>
.header {
align-content: center;
background: main.$theme;
color: white;
color: main.$theme;
background: #2b2b2b;
padding: 1rem;
font-size: 1.5rem;
Expand Down
1 change: 1 addition & 0 deletions src/main.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { createApp } from "vue";
import "./styles/index.scss";
import "element-plus/dist/index.css";
import "element-plus/theme-chalk/dark/css-vars.css";
import ElementPlus from "element-plus";
import App from "./App.vue";

Expand Down
3 changes: 2 additions & 1 deletion src/styles/index.scss
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
$theme: #a5d4ad;
$theme: #86c591;

body {
margin: 0;
padding: 0;

font-family: "Unhinted Rounded M+ 1p", "Rounded M+ 1p", sans-serif;
background: #1f1f1f;
}
#app {
min-height: 100vh;
Expand Down

0 comments on commit df19b99

Please sign in to comment.