Skip to content

Instantly share code, notes, and snippets.

@yanorei32
Last active April 4, 2017 11:12
Show Gist options
  • Save yanorei32/0eabb72bcccd989007a45071b1f45647 to your computer and use it in GitHub Desktop.
Save yanorei32/0eabb72bcccd989007a45071b1f45647 to your computer and use it in GitHub Desktop.
BetterDiscordの背景画像を設定するTheme。14行目を編集。
//META{"name":"Anime Charactor","description":"Change Background to Anime Charactor","author":"Yanorei32","version":"1.21"}*//
* {
font-family : "MyricaM M","Myrica M","Segoe UI";
}
.app * {
font-family : "にゃしぃフォント改二","Myrica M M","Myrica M","Segoe UI" !important;
}
/* 画像指定 */
.layer {
background-color : #2e3136;
background-image : url("HTTPS_URL");
background-repeat: no-repeat;
background-attachment: fixed;
background-position: 50% 50%;
background-size: cover;
z-index: 0;
}
.layer:before{
content: "";
background: inherit;
filter: blur(3px);
position: absolute;
top: -3px;
left: -3px;
right: -3px;
bottom: -3px;
z-index: -1;
}
/* サーバー一覧フレームのベース色 */
.guilds-wrapper {
background-color : rgba(0,0,0,0.85);
}
/* チャンネル一覧フレームのベース色 */
.channels-wrap {
background : rgba(0,0,0,0.80) !important;
}
/* チャンネルより右側のベース色 */
.chat {
background : rgba(0,0,0,0.75) !important;
}
/* フレンドのベース色 */
#friends {
background : rgba(0,0,0,0.75) !important;
}
/* チャンネル一覧の色 */
.channels-wrap .guild-channels,.private-channels {
background : rgba(0,0,0,0) !important;
}
/* サーバー名の色 */
.guild-header > header,.search-bar {
background : rgba(0,0,0,0.3) !important;
}
/* アカウントの色 */
.account {
background : rgba(0,0,0,0.3) !important;
}
/* アカウントボタンの色 */
.account .btn {
background : rgba(0,0,0,0.4) !important;
}
/* General とかの色 */
.title-wrap {
background : rgba(0,0,0,0.3) !important;
}
/* メッセージの大きなククリ */
.content {
background : rgba(0,0,0,0) !important;
}
/* メッセージ部分の色 */
.messages-wrapper {
background : rgba(0,0,0,0.1) !important;
}
/* フレンドのヘッド */
.friends-header{
background : rgba(0,0,0,0) !important;
}
/* フレンドの一覧 */
.friends-table {
background : rgba(0,0,0,0) !important;
}
/* 通話中ウィンドウ */
#voice-connection {
background : rgba(0,0,0,0.2) !important;
}
/* 通話ボタン */
#voice-connection .btn {
background : rgba(0,0,0,0.4) !important;
}
/* 右側のメンバー一覧 */
.channel-members {
background : rgba(0,0,0,0.3) !important;
}
/* チャンネルテキストのホバー時等 */
.guild-channels .channel-text.selected {
background : rgba(0,0,0,0.5) !important;
}
.guild-channels .channel-text:hover {
background : rgba(0,0,0,0.25) !important;
}
/* 謎のメッセージの背景 */
.channel-notices .channel-notice.invite {
background : url(/assets/bf625d222187f542b9d7179109422e2c.svg) center 20px no-repeat rgba(0,0,0,0.25) !important;
}
/* 表示されるあれ */
.embed-thumbnail,.attachment-image{
transition: opacity 0.25s ease-out !important;
Opacity : 0.25;
}
.embed-thumbnail:hover,.attachment-image:hover{
Opacity : 1;
}
/* タイプ中のあれ */
.typing {
background-color : rgba(0,0,0,0) !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment