Riskified Theme for VS Code

A Visual Studio Code theme inspired by Riskified's branding. This pack includes two themes:
- Riskified Dark: The primary dark theme.
- Riskified Dark Purple: A variation with purple accents.
Installation
- Open Extensions sidebar panel in VS Code.
View → Extensions
- Search for
Riskified Theme
.
- Click Install to install it.
- Click Reload to reload your editor.
- Code > Preferences > Color Theme > Riskified Dark or Riskified Dark Purple.
(Or
File > Preferences > Color Theme
on Windows/Linux)
Activating Theme
You can activate the theme through the command palette or your settings:
Command Palette:
- Open the Command Palette (Ctrl+Shift+P or Cmd+Shift+P).
- Type
Preferences: Color Theme
and select it.
- Choose either "Riskified Dark" or "Riskified Dark Purple" from the list.
Settings:
Open your VS Code settings.json
file.
Set the workbench.colorTheme
property to either "Riskified Dark"
or "Riskified Dark Purple"
:
{
"workbench.colorTheme": "Riskified Dark"
}
or
{
"workbench.colorTheme": "Riskified Dark Purple"
}
Screenshots
(Coming Soon! Add screenshots of the themes in action here.)
Customization
If you wish to customize the theme further, you can do so by modifying your settings.json
file. VS Code provides various settings to tweak the editor's appearance. For example, you can override specific theme colors:
{
"workbench.colorCustomizations": {
"[Riskified Dark]": { // Or "[Riskified Dark Purple]"
"editor.background": "#1E1E1E", // Example: Change background color
"activityBar.background": "#252526"
}
},
"editor.tokenColorCustomizations": {
"[Riskified Dark]": { // Or "[Riskified Dark Purple]"
"comments": "#55DD55" // Example: Change comment color
}
}
}
For more details, refer to the VS Code Theme Color Reference and Syntax Highlight Guide.
Disclaimer
This theme is an independent project created by a Riskified employee and is not an official Riskified product. It is not supported by Riskified, and Riskified has no responsibility or liability for this theme. All views and work are my own.
Feedback and Contributions
Found a bug or have a suggestion? Please open an issue on GitHub.
Contributions are welcome! Fork the repository and submit a pull request.
License
This theme is released under the MIT License.