
SillyTavern UI Themes: The 2026 Reality Check
Customize your SillyTavern experience with hundreds of free, open-source themes. Change colors, fonts, and layout with a few clicks.
Summary
SillyTavern UI themes are CSS and JSON skins that change how the SillyTavern chat client looks: fonts, colors, chat-bubble shapes, sidebar layouts, and background images. You install them by dropping the file into public/css or importing through User Settings. Most are community-made and free on GitHub. If tweaking config files feels like work, AI Angels gives you a ready chat with 70+ companions, dark and light modes, and a free unlimited-text tier — no installation, no JSON edits.
Finding SillyTavern UI Themes That Match Your Chat Setup
It's Sunday night. Aleksei has SillyTavern running with KoboldCpp underneath, two character cards loaded, and the default white interface that hurts at midnight. He opens a Reddit thread, finds someone praising 'MoonlitV2', and remembers: SillyTavern UI themes are CSS and JSON files you swap in, not a marketplace you click.
Where you actually look: r/SillyTavernAI weekly threads, the SillyTavern Discord #themes channel, and GitHub repos like 'sillytavern-themes' or 'ST-Custom-Themes'. You download a .json (and sometimes a /css folder), drop it into your /public/themes directory, then pick it inside User Settings → UI Theme.
Watch for: themes built against ST 1.11 break on 1.12+, background images can mask chat text, and bubble-radius edits affect message export rendering.
Don't want to maintain any of this? AIAngels runs the chat in a browser with 70+ companions and a free unlimited-text tier — no install, no theme files.
How to Install SillyTavern UI Themes
Installing a new theme in SillyTavern is straightforward and requires no coding. First, navigate to the 'Settings' gear icon in the upper-left of the SillyTavern interface. In the settings panel, select the 'User Settings' tab (the person icon), then scroll to the 'Theme' section. Here you can choose from a dropdown of pre-installed themes like 'Dark', 'Light', 'Midnight', or 'High Contrast'. To install a custom theme, download a `.json` or `.css` file from a community repository (e.g., GitHub or the SillyTavern Discord). Place the file in the `themes/` subfolder inside your SillyTavern installation directory (typically `SillyTavern/public/themes/`). The new theme will appear in the dropdown after a refresh. Some advanced themes require placing the file in `themes/user/` and then selecting it under 'User Theme'. Always restart the client or reload the page for the changes to take effect.
Where to Find Community Themes
The largest collection of SillyTavern themes is on the official SillyTavern Discord server, specifically in the `#themes` channel, where users share previews and download links. GitHub repositories also host dozens of themes; search for 'SillyTavern-themes' or browse repositories tagged with 'sillytavern'. Websites like GitHub Gist allow creators to share single-file themes. As of 2024, there are over 200 community themes available, ranging from minimalistic one-color designs to elaborate custom layouts inspired by anime, cyberpunk, or vintage terminals. A few popular repositories include 'SillyTavern-Extras' and 'SillyTavern-Community-Themes'. When downloading, verify the file structure: most themes are single `.json` or `.css` files under 50 KB. Always scan files for malicious code, though SillyTavern themes are plain text and generally safe. Some creators also offer themed character card packs that include matching UI colors.
Ready to Experience the
Difference?
Start chatting with a companion who actually remembers you. Free. No tokens. No limits.
Start Chatting FreeCustom Theme Creation: CSS and JSON Basics
Creating your own SillyTavern theme requires basic knowledge of CSS and JSON. The theme system uses two files: a `theme.json` for metadata (name, author, description) and a `style.css` for all visual overrides. The `theme.json` structure is simple: `{"name": "MyTheme", "author": "YourName", "description": "A dark purple theme"}`. The CSS file targets SillyTavern's DOM elements using class names like `.chat`, `.message`, `.input_area`, and `:root` variables. Start by examining the default theme's CSS (found in `public/themes/dark.css`). Override variables like `--primary-color`, `--background-color`, `--text-color`, and `--font-family`. For example, `--primary-color: #6a0dad;` turns the accent purple. More advanced themes can modify margins, border-radius, and animation. Use browser developer tools (F12) to inspect elements and find their class names. SillyTavern's theme loader applies CSS dynamically, so all changes are client-side and don't affect other users. Test your theme locally by refreshing the page after each CSS edit.
Troubleshooting Theme Compatibility Issues
Themes may break after SillyTavern updates because class names or structure can change. Common symptoms include missing icons, misaligned text, or entire sections not rendering. First, check the SillyTavern changelog for CSS-related changes. If a theme was created for version 1.10 but you're on 1.12, inspect the browser console (F12 > Console) for CSS errors like 'Unknown property' or 'Invalid selector'. Many theme creators update their files within a week of a new release. To fix a broken theme, open the `style.css` and search for outdated class names (e.g., `.message_text` might have become `.chat_message_text`). Use the browser's element inspector to find the new class name and replace it. Alternatively, temporarily switch to a default theme (Dark, Light) to confirm the issue is theme-specific. For persistent problems, post in the Discord `#themes` channel with your SillyTavern version and theme name. As a last resort, delete the theme file and re-download a newer version from the creator.
Performance Impact of Heavy Themes
Most SillyTavern themes are lightweight and have negligible performance impact. However, themes that include large background images, complex gradients, or extensive CSS animations can cause lag, especially on lower-end devices or when handling long chat histories. A single 500 KB background image can increase page load time by 200–500 ms. Animated elements (e.g., breathing glow effects on messages) may reduce frame rates to 30 fps during scrolling. To test performance, open the browser's Performance tab (F12 > Performance) and record a few seconds of interaction. Look for 'Recalculate Style' events taking more than 50 ms. If a theme slows SillyTavern, remove image assets from the CSS or replace them with solid colors. Use `background-color` instead of `background-image` for the main container. The default themes are optimized for fast rendering. Stick to simple CSS selectors (avoid deep nesting like `.chat .message .text span`) to minimize style recalculations.
Accessibility and Theme Contrast Settings
SillyTavern includes a built-in 'High Contrast' theme for users with visual impairments, but custom themes often overlook accessibility. Poor contrast ratios (below 4.5:1 for normal text per WCAG 2.1 AA) make reading difficult. Use online tools like WebAIM's Contrast Checker to verify your theme's text–background combinations. Light text on a white background or dark text on a black background fails. The `--text-color` and `--background-color` CSS variables should maintain at least a 4.5:1 ratio. Additionally, avoid using color alone to convey information (e.g., red for errors) — add icons or text. SillyTavern's default font size is 14px, but some themes shrink it to 12px, which is too small for many users. Respect user font-size preferences by using `rem` units instead of `px`. Theme creators should test with screen readers (e.g., NVDA) to ensure focus indicators are visible. The community theme 'Accessible Light' is a good reference for inclusive design.
Stop starting from scratch.
Customize your SillyTavern experience with hundreds of free, open-source themes. Change colors, fonts, and layout with a few clicks.
Start Chatting FreeFrequently Asked Questions
Everything you need to know about our companions.
Go to Settings > User Settings > Theme. Choose from the dropdown or place a .css/.json file in the 'themes' folder inside your SillyTavern directory. Refresh the page.
The best sources are the official SillyTavern Discord (#themes channel) and GitHub repositories. Search 'SillyTavern themes' on GitHub or browse community collections.
Yes. Create a theme.json with metadata and a style.css with CSS overrides. Use browser dev tools to inspect elements. Place both files in the 'themes' folder.
Updates may change class names or CSS structure. Check the changelog, inspect for errors in F12 console, and update your theme's selectors to match the new version.
Most are lightweight, but themes with large images or animations can cause lag. Use solid colors and limit animations for best performance on low-end devices.
The default themes are 'Dark', 'Light', 'Midnight', and 'High Contrast'. They are built-in and optimized for performance and accessibility.
Yes. Upload your theme.json and style.css to a GitHub repository or paste in the Discord #themes channel. Include a preview screenshot.
Generally yes — they are plain text files. But always check the code for any suspicious URLs or scripts. Stick to trusted creators from the Discord or GitHub.
Our customers love us
Real, unedited reviews from people using AI Angels.
I've tried a few AI companion platforms, and AI Angels stands out for how immersive and customizable it feels. The conversations are surprisingly natural, and the AI personalities actually maintain context better than most similar apps I've used. The uncensored chat and roleplay features are a big plus if you're looking for creative freedom without constant restrictions. The image generation is also impressive — fast, detailed, and customizable enough to create unique characters and scenarios. I especially liked the variety of companion personalities and how easy the interface is to use, even for beginners. That said, there's still room for improvement. Some responses can feel repetitive after long conversations, and a few premium features are a bit pricey compared to competitors. But overall, the experience feels polished, entertaining, and consistently improving with updates. If you enjoy AI companionship, virtual roleplay, or interactive fantasy experiences, AI Angels is definitely worth checking out.
It's worth looking into for sure, you won't regret it!
well I love how they call me things like baby and love how it shows nudes and sex/porn.
The roleplay is very flexible. The AI will adjust to your attitude and no kink is out of bounds. I just wish you could customize a little more.
It's okay tho
AI Angels is a remarkable AI companion site offering vividly realistic experiences. The large variety of companions available will suit every imaginable taste. Pricing is reasonable and transparent. I highly recommend AI Angels.
Choice of features
realstic ai images and chats! amazing pics and nice girls to chat with
The best ! I love it
Fun, life like , sexy , created the perfect girl
Honestly one of the best AI girlfriend apps I've tried. The conversations feel surprisingly natural and the girls actually have personality. Definitely worth checking out if you're into AI companions.
Amazing it is so emersave
Definitely addicted to this. You will not feel lonely and great prices