This will make the color scheme of the Dim selected in Bluesky's dark theme similar to the color scheme of the Dim in Twitter.
Bluesky Dim like Twitter / BlueskyのDimをTwitterっぽく by menndouyukkuri
Details
Authormenndouyukkuri
LicenseCC0
Categorybsky.app
Created
Updated
Size1.1 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
JA Description: BlueskyのDark ThemeでDimを選択した時の配色をTwitterのDimの配色に近づけます。
Source code
/* ==UserStyle==
@name Bluesky Dim like Twitter / BlueskyのDimをTwitterっぽく
@namespace github.com/openstyles/stylus
@version 1.0.1
@description This will make the color scheme of the Dim selected in Bluesky's dark theme similar to the color scheme of the Dim in Twitter. / BlueskyのDark ThemeでDimを選択した時の配色をTwitterのDimの配色に近づけます。
@author menndouyukkuri
==/UserStyle== */
@-moz-document domain("bsky.app") {
.theme--dim {
background-color: rgb(21, 32, 43);
}
.theme--dim [style*="background-color: rgb(8, 10, 12)"] {
background-color: rgb(21, 32, 43) !important;
}
.theme--dim [style*="background-color: rgb(20, 25, 31)"] {
background-color: rgb(44, 54, 64) !important;
}
.theme--dim [style*="background-color: rgb(53, 66, 80)"] {
background-color: rgb(127, 141, 162) !important;
}
.theme--dim [style*="border-color: rgb(37, 46, 55)"] {
border-color: rgb(56, 68, 77) !important;
}
}