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
Code size1.1 kB
Code checksum89b67a9a
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.2
@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);
[style*="background-color: rgb(8, 10, 12)"] {
background-color: rgb(21, 32, 43) !important;
}
[style*="background-color: rgb(20, 25, 31)"] {
background-color: rgb(44, 54, 64) !important;
}
[style*="background-color: rgb(53, 66, 80)"] {
background-color: rgb(127, 141, 162) !important;
}
[style*="border-color: rgb(37, 46, 55)"] {
border-color: rgb(56, 68, 77) !important;
}
}
}