Dark Mode for the browser game Fallen London at fallenlondon.com.
Changes the text color and background color to give a "dark mode" to parts of Fallen London that have the "paper" background normally.
Author0bsidianfire
LicenseNo License
Categoryfallenlondon
Created
Updated
Size2.7 kB
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Dark Mode for the browser game Fallen London at fallenlondon.com.
Changes the text color and background color to give a "dark mode" to parts of Fallen London that have the "paper" background normally.
/* ==UserStyle==
@name Fallen London Dark Mode
@namespace 0bsidianFire
@version 1.4.0
@description Dark Mode for Fallen London
@author 0bsidianFire
==/UserStyle== */
@document domain(fallenlondon.com){
.tab-content--inverse {
color: #cba; /* color of general text */
}
.modal-dialog {
color: #cba; /* color of text in pop-up boxes */
}
.modal--gate-storylet__content {
color: #cba; /* color of text in pop-up boxes */
}
.button--link-inverse {
color: #92d1d5; /*color of text in category links */
}
.menu-item--inverse.menu-item--active {
color: #cba; /* color of text in active category links */
}
.button--link:hover {
color: #fff; /* color of text on hover in category links */
}
/*all background-image: none; here*/
.tab-content:before,
.storylet:before,
.branch,
.branch.media--fate-locked,
.modal--gate-storylet__content,
.media--fate-locked,
.media--fate-locked.media--fate-locked,
.branch.media--locked,
.media--locked,
.media--message {
background-image: none; /* removes background image */
}
.tab-content:before {
background-color: #182828; /* background of main page */
filter: none; /* filter over background */
}
.storylet:before {
background-color: #183838; /* background of storylets */
}
.media--root {
background-color: #183838; /* background of messages (header storylets) */
background-image: url("https://images.fallenlondon.com/static/bg-paper-watermark.png"); /* flower image with no background image */
}
.branch {
background-color: #183838; /* background of branches */
}
.branch.media--locked,
.media--locked {
background-color:#402828; /* background of locked branches*/
}
.branch.media--fate-locked,
.media--fate-locked {
background-color: #504828; /* background of fate branches */
}
.modal--gate-storylet__content {
background-color:#182828; /* background of message*/
}
.media--message {
background-color:#183838; /* background of messages */
}
.myself-profile__panel {
background-color: #183838; /* background of messages */
}
.equipment-group__equipment-slot-container {
background-color: #183838; /* color of equipped items border */
}
.equipment-group__name {
background-color: #183838; /* color of equipment dividers */
}
.premium-sub-purchase-card__body {
background-color: #183838; /* background of EF blurb */
}
.inner-tab {
color: #92d1d5; /* color of text in Fate sub-tabs */
}
.inner-tab .inner-tab__icon {
background-color: #92d1d5 /* color of icon in Fate sub-tabs*/
}
.inner-tab--active {
color: #cba; /* color of text in active Fate sub-sabs*/
}
.inner-tab--active .inner-tab__icon {
background-color: #cba; /* color of icon in active Fate sub-sabs*/
}
}