5
0
Fork 0
Mastodon-documentation/Running-Mastodon/Customizing.md
Akihiko Odaki 00f401ba6f Update "Customizing your instance" according to a change in Mastodon (#234)
This change reflects commit af6a84da147f4230807b37c64bc09760e6ab5055 in
mastodon repository.
2017-05-10 15:47:03 +02:00

642 B

Customizing your instance

Customizing style

If you create files prefixed with custom and suffixed with .scss (e.g. app/assets/stylesheets/custom.scss, app/assets/stylesheets/custom-foo.css), the default css will be replaced by their contents.

Changing colors

If you want to customize for example the vibrant color of your mastodon instance, you can put the following code in your custom.scss file :

$color4: #d3d900; // vibrant

@import 'application';

Don't forget to recompile your assets and restart mastodon(if you didn't have a custom.scss file before) to see the changes.