forked from ChatGPTNextWeb/ChatGPT-Next-Web
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'refs/remotes/earlybird/main'
- Loading branch information
Showing
7 changed files
with
50 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
/* 珊瑚橙主题 */ | ||
@mixin coral-light { | ||
--primary: rgb(255, 127, 80); | ||
--second: rgba(255, 127, 80, 0.1); | ||
--second: rgb(253, 246, 243); | ||
--hover-color: rgb(255, 248, 245); | ||
--bar-color: rgba(255, 127, 80, 0.1); | ||
} | ||
|
||
@mixin coral-dark { | ||
--primary: rgb(255, 147, 100); | ||
--second: rgba(255, 147, 100, 0.1); | ||
--second: rgb(46, 42, 41); | ||
--hover-color: rgb(38, 35, 34); | ||
--bar-color: rgba(255, 147, 100, 0.1); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
/* 薄荷绿主题 */ | ||
@mixin mint-light { | ||
--primary: rgb(22, 177, 155); | ||
--second: rgba(22, 177, 155, 0.1); | ||
--second: rgb(242, 249, 247); | ||
--hover-color: rgb(245, 250, 248); | ||
--bar-color: rgba(22, 177, 155, 0.1); | ||
} | ||
|
||
@mixin mint-dark { | ||
--primary: rgb(42, 197, 175); | ||
--second: rgba(42, 197, 175, 0.1); | ||
--second: rgb(41, 46, 45); | ||
--hover-color: rgb(36, 38, 37); | ||
--bar-color: rgba(42, 197, 175, 0.1); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
/* 海洋蓝主题 */ | ||
@mixin ocean-light { | ||
--primary: rgb(0, 128, 128); | ||
--second: rgba(0, 128, 128, 0.1); | ||
--hover-color: rgb(245, 250, 250); | ||
--bar-color: rgba(0, 128, 128, 0.1); | ||
--primary: #315ef8; | ||
--second: #f3f3f6; | ||
--hover-color: #f3f3f3; | ||
--bar-color: rgba(0, 0, 0, .1); | ||
} | ||
|
||
@mixin ocean-dark { | ||
--primary: rgb(20, 148, 148); | ||
--second: rgba(20, 148, 148, 0.1); | ||
--hover-color: rgb(35, 38, 38); | ||
--bar-color: rgba(20, 148, 148, 0.1); | ||
--primary: #315ef8; | ||
--second: #26262c; | ||
--hover-color: #323232; | ||
--bar-color: hsla(0, 0%, 100%, .1); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
/* 深邃紫主题 */ | ||
@mixin purple-light { | ||
--primary: rgb(125, 95, 255); | ||
--second: rgba(125, 95, 255, 0.1); | ||
--second: rgb(245, 244, 252); | ||
--hover-color: rgb(247, 245, 255); | ||
--bar-color: rgba(125, 95, 255, 0.1); | ||
} | ||
|
||
@mixin purple-dark { | ||
--primary: rgb(145, 115, 255); | ||
--second: rgba(145, 115, 255, 0.1); | ||
--second: rgb(43, 41, 46); | ||
--hover-color: rgb(37, 35, 38); | ||
--bar-color: rgba(145, 115, 255, 0.1); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters