#Color theme source from the https://www.warp.dev/
3 messages · Page 1 of 1 (latest)
I apologize, but I don't have specific information about a YAML theme that exactly matches the one used on the Warp website (https://www.warp.dev/). However, I can provide some guidance on how you might recreate or find a similar theme:
-
You can check the Warp themes repository (https://github.com/warpdotdev/themes) to see if there's a theme that closely resembles the website's appearance.
-
If you can't find an exact match, you can create a custom theme manually. Here's how:
- Use a color picker tool to identify the exact colors used on the Warp website.
- Create a new YAML file in your
~/.warp/themes/directory (on macOS) or${XDG_DATA_HOME:-$HOME/.local/share}/warp-terminal/themes/directory (on Linux) Custom Themes Documentation (https://docs.warp.dev/appearance/custom-themes#how-do-i-use-a-custom-theme-in-warp). - Use the following structure for your YAML file, filling in the colors you picked from the website:
name: Warp Website Theme
accent: "#ACCENT_COLOR"
background: "#BACKGROUND_COLOR"
foreground: "#FOREGROUND_COLOR"
details: "darker" # or "lighter" depending on the overall theme
terminal_colors:
normal:
black: "#BLACK_COLOR"
red: "#RED_COLOR"
green: "#GREEN_COLOR"
yellow: "#YELLOW_COLOR"
blue: "#BLUE_COLOR"
magenta: "#MAGENTA_COLOR"
cyan: "#CYAN_COLOR"
white: "#WHITE_COLOR"
bright:
black: "#BRIGHT_BLACK_COLOR"
red: "#BRIGHT_RED_COLOR"
green: "#BRIGHT_GREEN_COLOR"
yellow: "#BRIGHT_YELLOW_COLOR"
blue: "#BRIGHT_BLUE_COLOR"
magenta: "#BRIGHT_MAGENTA_COLOR"
cyan: "#BRIGHT_CYAN_COLOR"
white: "#BRIGHT_WHITE_COLOR"
Replace the color values with the actual hex codes from the website Custom Themes Documentation (https://docs.warp.dev/appearance/custom-themes#create-your-custom-theme-manually).
- After creating the YAML file, restart Warp or wait a few minutes for it to discover the new theme. It should then appear in your list of available themes.