Skip to content

Commit

Permalink
Merge pull request #10 from szres/dark-theme
Browse files Browse the repository at this point in the history
chore: color theme update
  • Loading branch information
Nigh committed Apr 24, 2024
2 parents 10634b3 + 36c0d32 commit e36e971
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/routes/home.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<script>
/* eslint no-unused-vars: off */
import { state } from './store.js';
import LogoOverclock from './logo_overclock.svelte';
import LogoNormal from './logo_normal.svelte';
import ModeBtn from './mode_btn.svelte';
Expand Down
1 change: 1 addition & 0 deletions src/routes/mode_btn.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
z-index: 1;
}
.textx {
color: rgba(255, 255, 255, 0.01);
z-index: 3;
}
</style>
19 changes: 18 additions & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,22 @@ export default {
theme: {
extend: {}
},
plugins: [require('daisyui')]
plugins: [require('daisyui')],
daisyui: {
themes: [
{
xianii_theme: {
primary: '#fb7185',
secondary: '#c084fc',
accent: '#fde047',
neutral: '#44403c',
'base-100': '#1c1917',
info: '#0ea5e9',
success: '#22c55e',
warning: '#f97316',
error: '#b91c1c'
}
}
]
}
};

0 comments on commit e36e971

Please sign in to comment.