#f0f0f0 — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #f0f0f0, aggregated by home.social.
-
/* Pre-152 */
--toolbar-bgcolor: #c6c6c6 !important;
--toolbar-field-background-color: #f0f0f0 !important;
--toolbox-bgcolor: #3D3D3D !important;
--toolbox-textcolor: #f0f0f0 !important;
--toolbox-bgcolor-inactive: var(--toolbox-bgcolor) !important;
--toolbox-textcolor-inactive: var(--toolbox-textcolor) !important;/* Post-152 */
--tab-background-color-selected: #c6c6c6 !important;
--toolbox-background-color: #3D3D3D !important;
--toolbox-background-color-inactive: var(--toolbox-background-color) !important;
--toolbox-text-color:#f0f0f0 !important;
--toolbox-text-color-inactive: var(--toolbox-text-color) !important;
--toolbar-background-color: #c6c6c6 !important; -
/* Pre-152 */
--toolbar-bgcolor: #c6c6c6 !important;
--toolbar-field-background-color: #f0f0f0 !important;
--toolbox-bgcolor: #3D3D3D !important;
--toolbox-textcolor: #f0f0f0 !important;
--toolbox-bgcolor-inactive: var(--toolbox-bgcolor) !important;
--toolbox-textcolor-inactive: var(--toolbox-textcolor) !important;/* Post-152 */
--tab-background-color-selected: #c6c6c6 !important;
--toolbox-background-color: #3D3D3D !important;
--toolbox-background-color-inactive: var(--toolbox-background-color) !important;
--toolbox-text-color:#f0f0f0 !important;
--toolbox-text-color-inactive: var(--toolbox-text-color) !important;
--toolbar-background-color: #c6c6c6 !important; -
The first part is the critical one, the second one is just a reminder left for myself, just in case something weird happens later on:
```
section#work-item-similar-items {
display: none;
}section#work-item-similar-items ~ section::before {
content: "Similar items disabled via Stylus";
text-align: center;
margin: -5px 0 20px 0;
padding: 5px;
background-color: #f0f0f0;
display: block;
}
```2/2
-
The first part is the critical one, the second one is just a reminder left for myself, just in case something weird happens later on:
```
section#work-item-similar-items {
display: none;
}section#work-item-similar-items ~ section::before {
content: "Similar items disabled via Stylus";
text-align: center;
margin: -5px 0 20px 0;
padding: 5px;
background-color: #f0f0f0;
display: block;
}
```2/2
-
The early Web —
There was a social-norm among some of the people on the early Web, that you (the creator of web-site or web-page) should never set the text-color or background-color of a web-page.
That the user should decide what text-color and background-color web-pages are displayed in in their web-browsers.
That gave the early web a distinctive look (due to the default text-color and background-color) — black text on a grey background.
#000000 #F0F0F0 #Netscape #WorldWideWeb
-
The early Web —
There was a social-norm among some of the people on the early Web, that you (the creator of web-site or web-page) should never set the text-color or background-color of a web-page.
That the user should decide what text-color and background-color web-pages are displayed in in their web-browsers.
That gave the early web a distinctive look (due to the default text-color and background-color) — black text on a grey background.
#000000 #F0F0F0 #Netscape #WorldWideWeb
-
[Tw] RT @todays_mitsui: {
color: #fafafa;
background-color: #f0f0f0;
} https://t.co/9N8f8AepIO
[de] https://twitter.com/windymelt/status/1731227655960481808 -
I wonder how can I change this weird blue in the menu in modus-operandi 🤔
```
(require 'modus-themes)
(setq modus-themes-bold-constructs t)
(setq modus-operandi-palette-overrides
`(
(bg-mode-line-active "#335ea8")
(fg-mode-line-active "#ffffff")
(bg-mode-line-inactive "#f0f0f0")
(fg-mode-line-inactive "#000000")
,@modus-themes-preset-overrides-intense))
(load-theme 'modus-operandi t)
```