Added Trigger.dark theme to the docs (#2967)

<!-- devin-review-badge-begin -->

---

<a
href="https://app.devin.ai/review/triggerdotdev/trigger.dev/pull/2967">
  <picture>
<source media="(prefers-color-scheme: dark)"
srcset="https://static.devin.ai/assets/gh-open-in-devin-review-dark.svg?v=1">
<img
src="https://static.devin.ai/assets/gh-open-in-devin-review-light.svg?v=1"
alt="Open with Devin">
  </picture>
</a>
<!-- devin-review-badge-end -->
This commit is contained in:
DKP
2026-01-29 13:59:27 +00:00
committed by GitHub
parent 9e08712749
commit 0674d74bbb
2 changed files with 34 additions and 1 deletions
+5
View File
@@ -446,6 +446,11 @@
"display": "simple"
}
},
"styling": {
"codeblocks": {
"theme": "css-variables"
}
},
"appearance": {
"default": "dark",
"strict": true
+29 -1
View File
@@ -1,3 +1,31 @@
button~.absolute.peer-hover\:opacity-100 {
color: #000
}
}
:root {
/* Code block colors - Trigger.dark theme */
--mint-color-background: #121317;
--mint-color-text: #D4D4D4;
--mint-token-constant: #9B99FF;
--mint-token-string: #AFEC73;
--mint-token-comment: #5F6570;
--mint-token-keyword: #E888F8;
--mint-token-parameter: #CCCBFF;
--mint-token-function: #D9F07C;
--mint-token-string-expression: #AFEC73;
--mint-token-punctuation: #878C99;
--mint-token-link: #826DFF;
/* Shiki css-variables fallbacks */
--shiki-foreground: #D4D4D4;
--shiki-background: #121317;
--shiki-token-constant: #9B99FF;
--shiki-token-string: #AFEC73;
--shiki-token-comment: #5F6570;
--shiki-token-keyword: #E888F8;
--shiki-token-parameter: #CCCBFF;
--shiki-token-function: #D9F07C;
--shiki-token-string-expression: #AFEC73;
--shiki-token-punctuation: #878C99;
--shiki-token-link: #826DFF;
}