Skip to content

Commit

Permalink
Create anime.css
Browse files Browse the repository at this point in the history
  • Loading branch information
pompurin404 authored Sep 21, 2024
1 parent d327e12 commit d824353
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions themes/anime.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
/* 二刺螈 */

.light,
[data-theme="light"] {
--custom-content1-opacity: 0.7 !important;
--custom-content2-opacity: 0.8 !important;
/* 写base64可以不从网络加载图片 */
--custom-background-image: url("https://w.wallhaven.cc/full/jx/wallhaven-jxl31y.png");
}

.dark,
[data-theme="dark"] {
--custom-content1-opacity: 0.8 !important;
--custom-content2-opacity: 0.7 !important;
/* 写base64可以不从网络加载图片 */
--custom-background-image: url("https://w.wallhaven.cc/full/yj/wallhaven-yjk6ml.jpg");
}

html {
--nextui-background: none !important;
background: transparent !important;
background-image: var(--custom-background-image) !important;
background-size: cover !important;
}

.bg-default {
opacity: 0.8 !important;
}
.bg-default-100 {
opacity: 0.8 !important;
}
.bg-default-200 {
opacity: 0.8 !important;
}
.bg-content1 {
opacity: var(--custom-content1-opacity) !important;
}
.bg-content2 {
opacity: var(--custom-content2-opacity) !important;
}
.bg-primary {
opacity: 0.8 !important;
}
.bg-primary\/30 {
background-color: hsl(var(--nextui-primary)) !important;
opacity: 0.8 !important;
}
.bg-secondary\/30 {
background-color: hsl(var(--nextui-secondary)) !important;
opacity: 0.8 !important;
}

0 comments on commit d824353

Please sign in to comment.