Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.teamsbutactuallygood.dev/llms.txt

Use this file to discover all available pages before exploring further.

Here you’ll have a full tutorial on how to make a theme for Teams but (actually) good.
If you want to make your own custom theme, it’s better to use Teams but (actually) good custom theme system so you don’t have to build the extension all the time to see the changes (or watch but it does the same thing).
Tbag Themes Custom Themes
Here is an example of a theme:
/**
 * @name Test Name
 * @author LeonimusT
 * @version 0.0.1
 * @description Test description.
 * @source https://github.com
 * @website https://leonimust.com
 */

.fui-FluentProvider,
[class*="fui-FluentProvider"] {
  --backgroundCanvas: #1cbf52 !important;
}

#ms-searchux-input {
  background-color: #ffffff !important;
}
In the comments you’ve different information.
The name of the theme
The author of the theme, you basically
A simple version, e.g. 1.0.1
Small description
Your GitHub, GitLab or something else… Basically where the theme is hosted
Your website, portfolio or something similar
Now we got into the css, it’s basically just css, all css elements are available, no restriction about that. In here we won’t speak on how CSS works, it’s not the goal of this page, for that you’ve this CSS Tutorial from W3School