All Projects → trwnh → mastomods

trwnh / mastomods

Licence: Unlicense license
CSS tweaks and custom themes for Mastodon.

Programming Languages

CSS
56736 projects
SCSS
7915 projects

Projects that are alternatives of or similar to mastomods

FancyMenu
Source code for the FancyMenu mod.
Stars: ✭ 93 (-2.11%)
Mutual labels:  customization, mods
Home
A configurable and eXtensible Xml serializer for .NET.
Stars: ✭ 208 (+118.95%)
Mutual labels:  customization
Dotfiles
My bspwm dotfiles. Grab whatever you need! :)
Stars: ✭ 111 (+16.84%)
Mutual labels:  customization
Dots
messy dotfiles
Stars: ✭ 157 (+65.26%)
Mutual labels:  customization
Zimlx
Open Source and free launcher for Android
Stars: ✭ 137 (+44.21%)
Mutual labels:  customization
Automathemely
Simple, set-and-forget python application for changing between desktop themes according to light and dark hours
Stars: ✭ 169 (+77.89%)
Mutual labels:  customization
Dotfiles
▒ rice ░░ custom linux config files
Stars: ✭ 1,514 (+1493.68%)
Mutual labels:  customization
Griddle
Simple Grid Component written in React
Stars: ✭ 2,494 (+2525.26%)
Mutual labels:  customization
.tmux
🇫🇷 Oh my tmux! My self-contained, pretty & versatile tmux configuration made with ❤️
Stars: ✭ 15,594 (+16314.74%)
Mutual labels:  customization
Context Menu.ios
You can easily add awesome animated context menu to your app.
Stars: ✭ 1,854 (+1851.58%)
Mutual labels:  customization
Browserselect
Browser Select is a utility to dynamically select the browser you want instead of just having one default for all links.
Stars: ✭ 154 (+62.11%)
Mutual labels:  customization
Android
Delta Icon Pack for Android
Stars: ✭ 137 (+44.21%)
Mutual labels:  customization
Pull To Refresh.rentals Ios
This project aims to provide a simple and customizable pull to refresh implementation. Made in Yalantis
Stars: ✭ 2,171 (+2185.26%)
Mutual labels:  customization
Blazor.diagrams
A fully customizable and extensible all-purpose diagrams library for Blazor
Stars: ✭ 119 (+25.26%)
Mutual labels:  customization
Customizablecalendar
CustomizableCalendar is a library that allows you to create your calendar, customizing UI and behaviour
Stars: ✭ 214 (+125.26%)
Mutual labels:  customization
Startpages
Startpages for your favorite browser!
Stars: ✭ 109 (+14.74%)
Mutual labels:  customization
Rofi
A large collection of Rofi based custom Menu, Applets, Launchers & Powermenus.
Stars: ✭ 2,907 (+2960%)
Mutual labels:  customization
Posidonlauncher
a one-page homescreen with a news feed
Stars: ✭ 163 (+71.58%)
Mutual labels:  customization
winBuddy
📂 MacForge plugin to give windows some extra functionality on macOS
Stars: ✭ 94 (-1.05%)
Mutual labels:  tweak
Whitelist
A simple tool to add commonly white listed domains to your Pi-Hole setup.
Stars: ✭ 3,033 (+3092.63%)
Mutual labels:  customization

MastoMods

This repo contains CSS tweaks and modifications for Mastodon, a libre micro-blogging social server whose default web frontend is similar to Tweetdeck. These mods can be used to create custom themes by admins for their Mastodon instances, or imported into userstyle extensions by users.

Table of contents:

Prior work Preview
This work is heavily based on (and an extension of) my earlier work on Mastodon Flat CSS, and its child theme Linernotes Mastodon Themes. I grew tired of having to maintain what was essentially the same code in multiple different places, so this repo was created to be a more modular way of managing code snippets after I learned enough about how importing works. mfc preview
linernotes_dark is an admin-installable theme that was commissioned for linernotes.club. Because the base MFC theme is adaptable, it is not too difficult to build your own theme on top of it. See the source code for comments and documentation. linernotes preview

Instructions for admins

Download this repo and copy the files into your Mastodon deployment. If I can figure out the git commands to fetch the files without messing up your existing Mastodon deployment, I'll add them here. For now, I recommend cloning this repo and copying over the files that you want/need, and pulling in updates as necessary.

To use a pre-made theme:

Let's use the Linernotes Dark theme as an example. Per these olds docs, to enable a new theme, you need to do the following:

  1. Fetch the files. Add your desired custom CSS/SCSS to app/javascript/styles. You can copy/merge the entire app folder from the root of this repo into the root of your Mastodon deployment.
app/
  javascript/
    styles/
      contrast/
        ...
      fonts/
        ...
      linernotes_dark/                            | **new**
        overrides.scss                            | **new**
        palette.scss                              | **new**
      mastodon-light/
        ...
      mastodon/
        ...
      mfc/                                        | **new**
        mastodonFlat.css                          | **new**
        variables.scss                            | **new**
      mods/                                       | **new**
        avatars_circle.css                        | **new**
        columns_gettingstarted.css                | **new**
        ...                                       | **new**
        misc_elefriend.css                        | **new**
      application.scss
      contrast.scss
      linernotes_dark.scss                        | **new**
      mailer.scss
      mastodon-light.scss
  1. Add your theme to the config. This is what the default themes.yml looks like in Mastodon. To make your custom theme visible in settings, you need to add a new line in the form themeName: path/to/theme.scss. For example, the linernotes_dark theme would require adding linernotes_dark: styles/linernotes_dark.scss as a new line.
default: styles/application.scss
contrast: styles/contrast.scss
mastodon-light: styles/mastodon-light.scss
linernotes_dark: styles/linernotes_dark.scss      | **new**
  1. Add a human-friendly name for the theme (optional). You can edit each desired language's locale file in config/locales/[lang].yml to add a localized string name for your theme's themeName as added in the previous step. For example, the default config/locales/en.yml contains localizations for the three default themes that ship with Mastodon, into the english language. You need to do this for every language you expect your users to use, or else they will see the unlocalized themeName directly.
  themes:
    contrast: Mastodon (High contrast)
    default: Mastodon (Dark)
    mastodon-light: Mastodon (Light)
    linernotes_dark: Linernotes Dark              | **new**
  1. Compile theme assets and restart. Run RAILS_ENV=production bundle exec rails assets:precompile and restart your Mastodon instance for the changes to take effect.

To make your own theme:

  1. Fetch the base files. You will need, at minimum, the contents of the .../mfc/ folder. It is also recommended to fetch the .../mods/ folder, as it contains many useful additions to any theme.

  2. Define your chosen palette.scss. See .../linernotes_dark/palette.scss for commented instructions on how to choose and define your palette's colors. I recommend putting this in a subfolder with your themeName for organizational purposes (e.g. .../themeName/palette.scss), but you can also define this in Step 3 if you don't want multiple palette files and theme folders to be littered all over.

  3. Create a themeName.scss file. You can copy `linernotes_dark.scss as a starting point, as it follows the general structure of a theme file. In general, you need to import in the following order:

  • application: this contains the base styling of the mastodon webapp, before any modifications.
  • themeName/palette: this contains the Sass variables that need to be defined before the MFC rules can be applied. You can also copy the entirety of palette.scss from Step 2 and insert it at this position if you want less of a mess in file creation, at the expense of a messier themeName.scss.
  • mfc/mastodonFlat: this contains the MFC recolorings for foreground, background, and highlight elements.
  • mfc/variables: this uses the Sass variables you defined earlier and converts them to CSS variables so that mastodonFlat can be applied.
  • themeName/overrides (optional): if you have any custom overrides you'd like to make, such as custom backgrounds or replacing assets, it's a good idea to load them via this file.
  • mods/* (optional but recommended): import your desired mods. Refer to the .../mods/ folder for a list of available mods.

Instructions for users

If your admin has installed a theme:

  1. Go to your instance's Settings/Preferences.
  2. Scroll down to the "Web" section.
  3. Click the "Site theme" dropdown and select your desired theme.
  4. Save changes, and start using the Mastodon webapp with your newly selected theme!

If your admin has not installed a theme:

Copy and paste desired CSS tweaks into your user-style manager. If you don't have one, use Stylus:

stylus icon firefox opera chrome source code

Another way to get some of these tweaks... Help
A distribution of Mastodon Flat CSS is available at https://userstyles.org/styles/153362 and contains many of these tweaks through the "Customize settings" menu. image

The base MFC userstyle can be found at app/javascript/styles/mfc/mastodonFlat.css. You can load a theme into Stylus like so:

  1. Navigate to your Mastodon instance.
  2. Click the Stylus extension's icon in your browser and find the section that says "Write style for:"
  3. Hover over the website's domain name (e.g. mastodon.social) and click just that part, in order to write a new style that will be applied to the entire website.
  4. Copy and paste the contents of mastodonFlat.css into your new userstyle.
  5. Copy and paste any desired mods into your new userstyle.
  6. Name your userstyle, then click "Save" and close the popup window.

Support

mastodon Contact/follow me: mastodon.social/@trwnh

email Email/XMPP: [email protected] xmpp online status

paypal Tip me: paypal.me/trwnh

liberapay Recurring patronage: liberapay.com/trwnh

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].