system theme
/ˈsɪstəm θiːm/
CommonAn app's color scheme that automatically follows the OS dark/light mode setting.
Real-world examples4 examples
| # | Example | What it means | Source |
|---|---|---|---|
| 01 | just set it to follow the system theme and forget about it | The simplest approach is to let the app match the OS preference rather than choosing manually. | reddit, 2023 |
| 02 | app doesn't respect system theme. goes back to light mode every time I open it | The app ignores the OS preference and resets to its own default instead. | reddit, 2022 |
| 03 | added light/dark/system theme support. prefers-color-scheme is your friend | The developer implemented all three options using the CSS media query for OS theme detection. | x, 2023 |
| 04 | best UX decision you can make: default new users to system theme, not light mode | Apps should defer to the OS preference on first launch rather than forcing a specific theme. | x, 2024 |
Use it when
- An app or site detects and mirrors the OS color scheme.
- Describing the third option in a dark/light/system theme picker.
- Telling someone to set an app to follow their OS preference.
Do not use it when
- You mean the OS theme itself.
- You mean the app has a custom theme unrelated to dark/light.
Origin and context
The concept became standard after Apple introduced system-wide dark mode in macOS Mojave (2018) and iOS 13 (2019), giving developers a programmatic way to detect user preference and making a 'follow system' option expected behavior.
- First seen
- 2018
- Confidence
- medium
Cite this page
Use this stable URL to reference the entry.
https://slang.fyi/system-themeUpdated: 2026-08-28License: CC BY 4.0