Updated transitive dependencies

This commit is contained in:
seednode 2024-06-01 22:22:32 -04:00
parent 5440346b08
commit 2a0fad4538
13 changed files with 491 additions and 20 deletions

2
go.mod
View File

@ -3,7 +3,7 @@ module seedno.de/seednode/roulette
go 1.22
require (
github.com/alecthomas/chroma/v2 v2.13.0
github.com/alecthomas/chroma/v2 v2.14.0
github.com/julienschmidt/httprouter v1.3.0
github.com/klauspost/compress v1.17.8
github.com/spf13/cobra v1.8.0

8
go.sum
View File

@ -1,7 +1,7 @@
github.com/alecthomas/assert/v2 v2.6.0 h1:o3WJwILtexrEUk3cUVal3oiQY2tfgr/FHWiz/v2n4FU=
github.com/alecthomas/assert/v2 v2.6.0/go.mod h1:Bze95FyfUr7x34QZrjL+XP+0qgp/zg8yS+TtBj1WA3k=
github.com/alecthomas/chroma/v2 v2.13.0 h1:VP72+99Fb2zEcYM0MeaWJmV+xQvz5v5cxRHd+ooU1lI=
github.com/alecthomas/chroma/v2 v2.13.0/go.mod h1:BUGjjsD+ndS6eX37YgTchSEG+Jg9Jv1GiZs9sqPqztk=
github.com/alecthomas/assert/v2 v2.7.0 h1:QtqSACNS3tF7oasA8CU6A6sXZSBDqnm7RfpLl9bZqbE=
github.com/alecthomas/assert/v2 v2.7.0/go.mod h1:Bze95FyfUr7x34QZrjL+XP+0qgp/zg8yS+TtBj1WA3k=
github.com/alecthomas/chroma/v2 v2.14.0 h1:R3+wzpnUArGcQz7fCETQBzO5n9IMNi13iIs46aU4V9E=
github.com/alecthomas/chroma/v2 v2.14.0/go.mod h1:QolEbTfmUHIMVpBqxeDnNBj2uoeI4EbYP4i6n68SG4I=
github.com/alecthomas/repr v0.4.0 h1:GhI2A8MACjfegCPVq9f1FLvIBS+DrQ2KQBFZP1iFzXc=
github.com/alecthomas/repr v0.4.0/go.mod h1:Fr0507jx4eOXV7AlPV6AVZLYrLIuIeSOWtW57eE/O/4=
github.com/cpuguy83/go-md2man/v2 v2.0.3/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o=

View File

@ -49,7 +49,7 @@
<rule pattern="(true|false|null|_)\b">
<token type="KeywordConstant"/>
</rule>
<rule pattern="#?[_a-zA-Z$]\w*">
<rule pattern="[@#]?[_a-zA-Z$]\w*">
<token type="Name"/>
</rule>
</state>

View File

@ -0,0 +1,117 @@
<lexer>
<config>
<name>Gleam</name>
<alias>gleam></alias>
<filename>*.gleam</filename>
<mime_type>text/x-gleam</mime_type>
</config>
<rules>
<state name="root">
<rule pattern="\s+">
<token type="TextWhitespace"/>
</rule>
<rule pattern="///(.*?)\n">
<token type="LiteralStringDoc"/>
</rule>
<rule pattern="//(.*?)\n">
<token type="CommentSingle"/>
</rule>
<rule pattern="(as|assert|case|opaque|panic|pub|todo)\b">
<token type="Keyword"/>
</rule>
<rule pattern="(import|use)\b">
<token type="KeywordNamespace"/>
</rule>
<rule pattern="(auto|const|delegate|derive|echo|else|if|implement|macro|test)\b">
<token type="KeywordReserved"/>
</rule>
<rule pattern="(let)\b">
<token type="KeywordDeclaration"/>
</rule>
<rule pattern="(fn)\b">
<token type="Keyword"/>
</rule>
<rule pattern="(type)\b">
<token type="Keyword"/>
<push state="typename"/>
</rule>
<rule pattern="(True|False)\b">
<token type="KeywordConstant"/>
</rule>
<rule pattern="0[bB][01](_?[01])*">
<token type="LiteralNumberBin"/>
</rule>
<rule pattern="0[oO][0-7](_?[0-7])*">
<token type="LiteralNumberOct"/>
</rule>
<rule pattern="0[xX][\da-fA-F](_?[\dA-Fa-f])*">
<token type="LiteralNumberHex"/>
</rule>
<rule pattern="\d(_?\d)*\.\d(_?\d)*([eE][-+]?\d(_?\d)*)?">
<token type="LiteralNumberFloat"/>
</rule>
<rule pattern="\d(_?\d)*">
<token type="LiteralNumberInteger"/>
</rule>
<rule pattern="&#34;">
<token type="LiteralString"/>
<push state="string"/>
</rule>
<rule pattern="@([a-z_]\w*[!?]?)">
<token type="NameAttribute"/>
</rule>
<rule pattern="[{}()\[\],]|[#(]|\.\.|&lt;&gt;|&lt;&lt;|&gt;&gt;">
<token type="Punctuation"/>
</rule>
<rule pattern="[+\-*/%!=&lt;&gt;&amp;|.]|&lt;-">
<token type="Operator"/>
</rule>
<rule pattern=":|-&gt;">
<token type="Operator"/>
<push state="typename"/>
</rule>
<rule pattern="([a-z_][A-Za-z0-9_]*)(\()">
<bygroups>
<token type="NameFunction"/>
<token type="Punctuation"/>
</bygroups>
</rule>
<rule pattern="([A-Z][A-Za-z0-9_]*)(\()">
<bygroups>
<token type="NameClass"/>
<token type="Punctuation"/>
</bygroups>
</rule>
<rule pattern="([a-z_]\w*[!?]?)">
<token type="Name"/>
</rule>
</state>
<state name="typename">
<rule pattern="\s+">
<token type="TextWhitespace"/>
</rule>
<rule pattern="[A-Z][A-Za-z0-9_]*">
<token type="NameClass"/>
<pop depth="1"/>
</rule>
<rule>
<pop depth="1"/>
</rule>
</state>
<state name="string">
<rule pattern="&#34;">
<token type="LiteralString"/>
<pop depth="1"/>
</rule>
<rule pattern="\\[&#34;\\fnrt]|\\u\{[\da-fA-F]{1,6}\}">
<token type="LiteralStringEscape"/>
</rule>
<rule pattern="[^\\&#34;]+">
<token type="LiteralString"/>
</rule>
<rule pattern="\\">
<token type="LiteralString"/>
</rule>
</state>
</rules>
</lexer>

View File

@ -228,42 +228,42 @@
</rule>
</state>
<state name="inline">
<rule pattern="(\s)*(\*[^ \n*][^*]+?[^ \n*]\*)((?=\W|\n|$))">
<rule pattern="(\s*)(\*[^ \n*][^*]+?[^ \n*]\*)((?=\W|\n|$))">
<bygroups>
<token type="Text"/>
<token type="GenericStrong"/>
<token type="Text"/>
</bygroups>
</rule>
<rule pattern="(\s)*(/[^/]+?/)((?=\W|\n|$))">
<rule pattern="(\s*)(/[^/]+?/)((?=\W|\n|$))">
<bygroups>
<token type="Text"/>
<token type="GenericEmph"/>
<token type="Text"/>
</bygroups>
</rule>
<rule pattern="(\s)*(=[^\n=]+?=)((?=\W|\n|$))">
<rule pattern="(\s*)(=[^\n=]+?=)((?=\W|\n|$))">
<bygroups>
<token type="Text"/>
<token type="NameClass"/>
<token type="Text"/>
</bygroups>
</rule>
<rule pattern="(\s)*(~[^\n~]+?~)((?=\W|\n|$))">
<rule pattern="(\s*)(~[^\n~]+?~)((?=\W|\n|$))">
<bygroups>
<token type="Text"/>
<token type="NameClass"/>
<token type="Text"/>
</bygroups>
</rule>
<rule pattern="(\s)*(\+[^+]+?\+)((?=\W|\n|$))">
<rule pattern="(\s*)(\+[^+]+?\+)((?=\W|\n|$))">
<bygroups>
<token type="Text"/>
<token type="GenericDeleted"/>
<token type="Text"/>
</bygroups>
</rule>
<rule pattern="(\s)*(_[^_]+?_)((?=\W|\n|$))">
<rule pattern="(\s*)(_[^_]+?_)((?=\W|\n|$))">
<bygroups>
<token type="Text"/>
<token type="GenericUnderline"/>

View File

@ -19,6 +19,10 @@
<filename>BUILD</filename>
<filename>BUILD.bazel</filename>
<filename>WORKSPACE</filename>
<filename>WORKSPACE.bzlmod</filename>
<filename>WORKSPACE.bazel</filename>
<filename>MODULE.bazel</filename>
<filename>REPO.bazel</filename>
<filename>*.tac</filename>
<mime_type>text/x-python</mime_type>
<mime_type>application/x-python</mime_type>

View File

@ -51,10 +51,13 @@
</rule>
</state>
<state name="tag">
<rule>
<include state="commentsandwhitespace"/>
</rule>
<rule pattern="\s+">
<token type="Text"/>
</rule>
<rule pattern="([\w]+\s*)(=)(\s*)">
<rule pattern="([\w-]+\s*)(=)(\s*)">
<bygroups>
<token type="NameAttribute"/>
<token type="Operator"/>
@ -77,12 +80,25 @@
<pop depth="1"/>
</rule>
</state>
<state name="comment">
<rule pattern="[^-]+">
<token type="Comment"/>
</rule>
<rule pattern="--&gt;">
<token type="Comment"/>
<pop depth="1"/>
</rule>
<rule pattern="-">
<token type="Comment"/>
</rule>
</state>
<state name="commentsandwhitespace">
<rule pattern="\s+">
<token type="Text"/>
</rule>
<rule pattern="&lt;!--">
<token type="Comment"/>
<push state="comment"/>
</rule>
<rule pattern="//.*?\n">
<token type="CommentSingle"/>
@ -200,7 +216,7 @@
<rule pattern="(Array|Boolean|Date|Error|Function|Math|Number|Object|Packages|RegExp|String|decodeURI|decodeURIComponent|encodeURI|encodeURIComponent|eval|isFinite|isNaN|parseFloat|parseInt|document|this|window)\b">
<token type="NameBuiltin"/>
</rule>
<rule pattern="\b(module)(\s*)(\s*[\w?.$][\w?.$]*)(\s*)">
<rule pattern="\b(module)(\s+)(&quot;[\w\./@]+&quot;)(\s+)">
<bygroups>
<token type="KeywordReserved"/>
<token type="Text"/>

View File

@ -83,9 +83,10 @@
<token type="LiteralString"/>
</bygroups>
</rule>
<rule pattern="(:[\S]+)(=&#34;[\S]+&#34;)">
<rule pattern="(:[\S]+)(=)(&#34;[\S]+&#34;)">
<bygroups>
<token type="NameTag"/>
<token type="Operator"/>
<token type="LiteralString"/>
</bygroups>
</rule>
@ -104,9 +105,10 @@
<token type="Punctuation"/>
</bygroups>
</rule>
<rule pattern="(v-[\w]+)(=&#34;[\S]+&#34;)(&gt;)">
<rule pattern="(v-[\w]+)(=)(&#34;[\S ]+&#34;)(&gt;|\s)">
<bygroups>
<token type="NameTag"/>
<token type="Operator"/>
<token type="LiteralString"/>
<token type="Punctuation"/>
</bygroups>
@ -258,14 +260,14 @@
</rule>
</state>
<state name="vue">
<rule pattern="(&lt;)([\w]+)">
<rule pattern="(&lt;)([\w-]+)">
<bygroups>
<token type="Punctuation"/>
<token type="NameTag"/>
</bygroups>
<push state="tag"/>
</rule>
<rule pattern="(&lt;)(/)([\w]+)(&gt;)">
<rule pattern="(&lt;)(/)([\w-]+)(&gt;)">
<bygroups>
<token type="Punctuation"/>
<token type="Punctuation"/>

View File

@ -0,0 +1,83 @@
<style name="tokyonight-day">
<entry type="Background" style="bg:#e1e2e7 #3760bf"/>
<entry type="CodeLine" style="#3760bf"/>
<entry type="Error" style="#c64343"/>
<entry type="Other" style="#3760bf"/>
<entry type="LineTableTD" style=""/>
<entry type="LineTable" style=""/>
<entry type="LineHighlight" style="bg:#a1a6c5"/>
<entry type="LineNumbersTable" style="#6172b0"/>
<entry type="LineNumbers" style="#6172b0"/>
<entry type="Keyword" style="#9854f1"/>
<entry type="KeywordReserved" style="#9854f1"/>
<entry type="KeywordPseudo" style="#9854f1"/>
<entry type="KeywordConstant" style="#8c6c3e"/>
<entry type="KeywordDeclaration" style="#9d7cd8"/>
<entry type="KeywordNamespace" style="#007197"/>
<entry type="KeywordType" style="#0db9d7"/>
<entry type="Name" style="#3760bf"/>
<entry type="NameClass" style="#b15c00"/>
<entry type="NameConstant" style="#b15c00"/>
<entry type="NameDecorator" style="bold #2e7de9"/>
<entry type="NameEntity" style="#007197"/>
<entry type="NameException" style="#8c6c3e"/>
<entry type="NameFunction" style="#2e7de9"/>
<entry type="NameFunctionMagic" style="#2e7de9"/>
<entry type="NameLabel" style="#587539"/>
<entry type="NameNamespace" style="#8c6c3e"/>
<entry type="NameProperty" style="#8c6c3e"/>
<entry type="NameTag" style="#9854f1"/>
<entry type="NameVariable" style="#3760bf"/>
<entry type="NameVariableClass" style="#3760bf"/>
<entry type="NameVariableGlobal" style="#3760bf"/>
<entry type="NameVariableInstance" style="#3760bf"/>
<entry type="NameVariableMagic" style="#3760bf"/>
<entry type="NameAttribute" style="#2e7de9"/>
<entry type="NameBuiltin" style="#587539"/>
<entry type="NameBuiltinPseudo" style="#587539"/>
<entry type="NameOther" style="#3760bf"/>
<entry type="Literal" style="#3760bf"/>
<entry type="LiteralDate" style="#3760bf"/>
<entry type="LiteralString" style="#587539"/>
<entry type="LiteralStringChar" style="#587539"/>
<entry type="LiteralStringSingle" style="#587539"/>
<entry type="LiteralStringDouble" style="#587539"/>
<entry type="LiteralStringBacktick" style="#587539"/>
<entry type="LiteralStringOther" style="#587539"/>
<entry type="LiteralStringSymbol" style="#587539"/>
<entry type="LiteralStringInterpol" style="#587539"/>
<entry type="LiteralStringAffix" style="#9d7cd8"/>
<entry type="LiteralStringDelimiter" style="#2e7de9"/>
<entry type="LiteralStringEscape" style="#2e7de9"/>
<entry type="LiteralStringRegex" style="#007197"/>
<entry type="LiteralStringDoc" style="#a1a6c5"/>
<entry type="LiteralStringHeredoc" style="#a1a6c5"/>
<entry type="LiteralNumber" style="#8c6c3e"/>
<entry type="LiteralNumberBin" style="#8c6c3e"/>
<entry type="LiteralNumberHex" style="#8c6c3e"/>
<entry type="LiteralNumberInteger" style="#8c6c3e"/>
<entry type="LiteralNumberFloat" style="#8c6c3e"/>
<entry type="LiteralNumberIntegerLong" style="#8c6c3e"/>
<entry type="LiteralNumberOct" style="#8c6c3e"/>
<entry type="Operator" style="bold #587539"/>
<entry type="OperatorWord" style="bold #587539"/>
<entry type="Comment" style="italic #a1a6c5"/>
<entry type="CommentSingle" style="italic #a1a6c5"/>
<entry type="CommentMultiline" style="italic #a1a6c5"/>
<entry type="CommentSpecial" style="italic #a1a6c5"/>
<entry type="CommentHashbang" style="italic #a1a6c5"/>
<entry type="CommentPreproc" style="italic #a1a6c5"/>
<entry type="CommentPreprocFile" style="bold #a1a6c5"/>
<entry type="Generic" style="#3760bf"/>
<entry type="GenericInserted" style="bg:#e9e9ed #587539"/>
<entry type="GenericDeleted" style="#c64343 bg:#e9e9ed"/>
<entry type="GenericEmph" style="italic #3760bf"/>
<entry type="GenericStrong" style="bold #3760bf"/>
<entry type="GenericUnderline" style="underline #3760bf"/>
<entry type="GenericHeading" style="bold #8c6c3e"/>
<entry type="GenericSubheading" style="bold #8c6c3e"/>
<entry type="GenericOutput" style="#3760bf"/>
<entry type="GenericPrompt" style="#3760bf"/>
<entry type="GenericError" style="#c64343"/>
<entry type="GenericTraceback" style="#c64343"/>
</style>

View File

@ -0,0 +1,83 @@
<style name="tokyonight-moon">
<entry type="Background" style="bg:#222436 #c8d3f5"/>
<entry type="CodeLine" style="#c8d3f5"/>
<entry type="Error" style="#c53b53"/>
<entry type="Other" style="#c8d3f5"/>
<entry type="LineTableTD" style=""/>
<entry type="LineTable" style=""/>
<entry type="LineHighlight" style="bg:#444a73"/>
<entry type="LineNumbersTable" style="#828bb8"/>
<entry type="LineNumbers" style="#828bb8"/>
<entry type="Keyword" style="#c099ff"/>
<entry type="KeywordReserved" style="#c099ff"/>
<entry type="KeywordPseudo" style="#c099ff"/>
<entry type="KeywordConstant" style="#ffc777"/>
<entry type="KeywordDeclaration" style="#c099ff"/>
<entry type="KeywordNamespace" style="#86e1fc"/>
<entry type="KeywordType" style="#4fd6be"/>
<entry type="Name" style="#c8d3f5"/>
<entry type="NameClass" style="#ff966c"/>
<entry type="NameConstant" style="#ff966c"/>
<entry type="NameDecorator" style="bold #82aaff"/>
<entry type="NameEntity" style="#86e1fc"/>
<entry type="NameException" style="#ffc777"/>
<entry type="NameFunction" style="#82aaff"/>
<entry type="NameFunctionMagic" style="#82aaff"/>
<entry type="NameLabel" style="#c3e88d"/>
<entry type="NameNamespace" style="#ffc777"/>
<entry type="NameProperty" style="#ffc777"/>
<entry type="NameTag" style="#c099ff"/>
<entry type="NameVariable" style="#c8d3f5"/>
<entry type="NameVariableClass" style="#c8d3f5"/>
<entry type="NameVariableGlobal" style="#c8d3f5"/>
<entry type="NameVariableInstance" style="#c8d3f5"/>
<entry type="NameVariableMagic" style="#c8d3f5"/>
<entry type="NameAttribute" style="#82aaff"/>
<entry type="NameBuiltin" style="#c3e88d"/>
<entry type="NameBuiltinPseudo" style="#c3e88d"/>
<entry type="NameOther" style="#c8d3f5"/>
<entry type="Literal" style="#c8d3f5"/>
<entry type="LiteralDate" style="#c8d3f5"/>
<entry type="LiteralString" style="#c3e88d"/>
<entry type="LiteralStringChar" style="#c3e88d"/>
<entry type="LiteralStringSingle" style="#c3e88d"/>
<entry type="LiteralStringDouble" style="#c3e88d"/>
<entry type="LiteralStringBacktick" style="#c3e88d"/>
<entry type="LiteralStringOther" style="#c3e88d"/>
<entry type="LiteralStringSymbol" style="#c3e88d"/>
<entry type="LiteralStringInterpol" style="#c3e88d"/>
<entry type="LiteralStringAffix" style="#c099ff"/>
<entry type="LiteralStringDelimiter" style="#82aaff"/>
<entry type="LiteralStringEscape" style="#82aaff"/>
<entry type="LiteralStringRegex" style="#86e1fc"/>
<entry type="LiteralStringDoc" style="#444a73"/>
<entry type="LiteralStringHeredoc" style="#444a73"/>
<entry type="LiteralNumber" style="#ffc777"/>
<entry type="LiteralNumberBin" style="#ffc777"/>
<entry type="LiteralNumberHex" style="#ffc777"/>
<entry type="LiteralNumberInteger" style="#ffc777"/>
<entry type="LiteralNumberFloat" style="#ffc777"/>
<entry type="LiteralNumberIntegerLong" style="#ffc777"/>
<entry type="LiteralNumberOct" style="#ffc777"/>
<entry type="Operator" style="bold #c3e88d"/>
<entry type="OperatorWord" style="bold #c3e88d"/>
<entry type="Comment" style="italic #444a73"/>
<entry type="CommentSingle" style="italic #444a73"/>
<entry type="CommentMultiline" style="italic #444a73"/>
<entry type="CommentSpecial" style="italic #444a73"/>
<entry type="CommentHashbang" style="italic #444a73"/>
<entry type="CommentPreproc" style="italic #444a73"/>
<entry type="CommentPreprocFile" style="bold #444a73"/>
<entry type="Generic" style="#c8d3f5"/>
<entry type="GenericInserted" style="bg:#1b1d2b #c3e88d"/>
<entry type="GenericDeleted" style="#c53b53 bg:#1b1d2b"/>
<entry type="GenericEmph" style="italic #c8d3f5"/>
<entry type="GenericStrong" style="bold #c8d3f5"/>
<entry type="GenericUnderline" style="underline #c8d3f5"/>
<entry type="GenericHeading" style="bold #ffc777"/>
<entry type="GenericSubheading" style="bold #ffc777"/>
<entry type="GenericOutput" style="#c8d3f5"/>
<entry type="GenericPrompt" style="#c8d3f5"/>
<entry type="GenericError" style="#c53b53"/>
<entry type="GenericTraceback" style="#c53b53"/>
</style>

View File

@ -0,0 +1,83 @@
<style name="tokyonight-night">
<entry type="Background" style="bg:#1a1b26 #c0caf5"/>
<entry type="CodeLine" style="#c0caf5"/>
<entry type="Error" style="#db4b4b"/>
<entry type="Other" style="#c0caf5"/>
<entry type="LineTableTD" style=""/>
<entry type="LineTable" style=""/>
<entry type="LineHighlight" style="bg:#414868"/>
<entry type="LineNumbersTable" style="#a9b1d6"/>
<entry type="LineNumbers" style="#a9b1d6"/>
<entry type="Keyword" style="#bb9af7"/>
<entry type="KeywordReserved" style="#bb9af7"/>
<entry type="KeywordPseudo" style="#bb9af7"/>
<entry type="KeywordConstant" style="#e0af68"/>
<entry type="KeywordDeclaration" style="#9d7cd8"/>
<entry type="KeywordNamespace" style="#7dcfff"/>
<entry type="KeywordType" style="#41a6b5"/>
<entry type="Name" style="#c0caf5"/>
<entry type="NameClass" style="#ff9e64"/>
<entry type="NameConstant" style="#ff9e64"/>
<entry type="NameDecorator" style="bold #7aa2f7"/>
<entry type="NameEntity" style="#7dcfff"/>
<entry type="NameException" style="#e0af68"/>
<entry type="NameFunction" style="#7aa2f7"/>
<entry type="NameFunctionMagic" style="#7aa2f7"/>
<entry type="NameLabel" style="#9ece6a"/>
<entry type="NameNamespace" style="#e0af68"/>
<entry type="NameProperty" style="#e0af68"/>
<entry type="NameTag" style="#bb9af7"/>
<entry type="NameVariable" style="#c0caf5"/>
<entry type="NameVariableClass" style="#c0caf5"/>
<entry type="NameVariableGlobal" style="#c0caf5"/>
<entry type="NameVariableInstance" style="#c0caf5"/>
<entry type="NameVariableMagic" style="#c0caf5"/>
<entry type="NameAttribute" style="#7aa2f7"/>
<entry type="NameBuiltin" style="#9ece6a"/>
<entry type="NameBuiltinPseudo" style="#9ece6a"/>
<entry type="NameOther" style="#c0caf5"/>
<entry type="Literal" style="#c0caf5"/>
<entry type="LiteralDate" style="#c0caf5"/>
<entry type="LiteralString" style="#9ece6a"/>
<entry type="LiteralStringChar" style="#9ece6a"/>
<entry type="LiteralStringSingle" style="#9ece6a"/>
<entry type="LiteralStringDouble" style="#9ece6a"/>
<entry type="LiteralStringBacktick" style="#9ece6a"/>
<entry type="LiteralStringOther" style="#9ece6a"/>
<entry type="LiteralStringSymbol" style="#9ece6a"/>
<entry type="LiteralStringInterpol" style="#9ece6a"/>
<entry type="LiteralStringAffix" style="#9d7cd8"/>
<entry type="LiteralStringDelimiter" style="#7aa2f7"/>
<entry type="LiteralStringEscape" style="#7aa2f7"/>
<entry type="LiteralStringRegex" style="#7dcfff"/>
<entry type="LiteralStringDoc" style="#414868"/>
<entry type="LiteralStringHeredoc" style="#414868"/>
<entry type="LiteralNumber" style="#e0af68"/>
<entry type="LiteralNumberBin" style="#e0af68"/>
<entry type="LiteralNumberHex" style="#e0af68"/>
<entry type="LiteralNumberInteger" style="#e0af68"/>
<entry type="LiteralNumberFloat" style="#e0af68"/>
<entry type="LiteralNumberIntegerLong" style="#e0af68"/>
<entry type="LiteralNumberOct" style="#e0af68"/>
<entry type="Operator" style="bold #9ece6a"/>
<entry type="OperatorWord" style="bold #9ece6a"/>
<entry type="Comment" style="italic #414868"/>
<entry type="CommentSingle" style="italic #414868"/>
<entry type="CommentMultiline" style="italic #414868"/>
<entry type="CommentSpecial" style="italic #414868"/>
<entry type="CommentHashbang" style="italic #414868"/>
<entry type="CommentPreproc" style="italic #414868"/>
<entry type="CommentPreprocFile" style="bold #414868"/>
<entry type="Generic" style="#c0caf5"/>
<entry type="GenericInserted" style="bg:#15161e #9ece6a"/>
<entry type="GenericDeleted" style="#db4b4b bg:#15161e"/>
<entry type="GenericEmph" style="italic #c0caf5"/>
<entry type="GenericStrong" style="bold #c0caf5"/>
<entry type="GenericUnderline" style="underline #c0caf5"/>
<entry type="GenericHeading" style="bold #e0af68"/>
<entry type="GenericSubheading" style="bold #e0af68"/>
<entry type="GenericOutput" style="#c0caf5"/>
<entry type="GenericPrompt" style="#c0caf5"/>
<entry type="GenericError" style="#db4b4b"/>
<entry type="GenericTraceback" style="#db4b4b"/>
</style>

View File

@ -0,0 +1,83 @@
<style name="tokyonight-storm">
<entry type="Background" style="bg:#1a1b26 #c0caf5"/>
<entry type="CodeLine" style="#c0caf5"/>
<entry type="Error" style="#db4b4b"/>
<entry type="Other" style="#c0caf5"/>
<entry type="LineTableTD" style=""/>
<entry type="LineTable" style=""/>
<entry type="LineHighlight" style="bg:#414868"/>
<entry type="LineNumbersTable" style="#a9b1d6"/>
<entry type="LineNumbers" style="#a9b1d6"/>
<entry type="Keyword" style="#bb9af7"/>
<entry type="KeywordReserved" style="#bb9af7"/>
<entry type="KeywordPseudo" style="#bb9af7"/>
<entry type="KeywordConstant" style="#e0af68"/>
<entry type="KeywordDeclaration" style="#9d7cd8"/>
<entry type="KeywordNamespace" style="#7dcfff"/>
<entry type="KeywordType" style="#41a6b5"/>
<entry type="Name" style="#c0caf5"/>
<entry type="NameClass" style="#ff9e64"/>
<entry type="NameConstant" style="#ff9e64"/>
<entry type="NameDecorator" style="bold #7aa2f7"/>
<entry type="NameEntity" style="#7dcfff"/>
<entry type="NameException" style="#e0af68"/>
<entry type="NameFunction" style="#7aa2f7"/>
<entry type="NameFunctionMagic" style="#7aa2f7"/>
<entry type="NameLabel" style="#9ece6a"/>
<entry type="NameNamespace" style="#e0af68"/>
<entry type="NameProperty" style="#e0af68"/>
<entry type="NameTag" style="#bb9af7"/>
<entry type="NameVariable" style="#c0caf5"/>
<entry type="NameVariableClass" style="#c0caf5"/>
<entry type="NameVariableGlobal" style="#c0caf5"/>
<entry type="NameVariableInstance" style="#c0caf5"/>
<entry type="NameVariableMagic" style="#c0caf5"/>
<entry type="NameAttribute" style="#7aa2f7"/>
<entry type="NameBuiltin" style="#9ece6a"/>
<entry type="NameBuiltinPseudo" style="#9ece6a"/>
<entry type="NameOther" style="#c0caf5"/>
<entry type="Literal" style="#c0caf5"/>
<entry type="LiteralDate" style="#c0caf5"/>
<entry type="LiteralString" style="#9ece6a"/>
<entry type="LiteralStringChar" style="#9ece6a"/>
<entry type="LiteralStringSingle" style="#9ece6a"/>
<entry type="LiteralStringDouble" style="#9ece6a"/>
<entry type="LiteralStringBacktick" style="#9ece6a"/>
<entry type="LiteralStringOther" style="#9ece6a"/>
<entry type="LiteralStringSymbol" style="#9ece6a"/>
<entry type="LiteralStringInterpol" style="#9ece6a"/>
<entry type="LiteralStringAffix" style="#9d7cd8"/>
<entry type="LiteralStringDelimiter" style="#7aa2f7"/>
<entry type="LiteralStringEscape" style="#7aa2f7"/>
<entry type="LiteralStringRegex" style="#7dcfff"/>
<entry type="LiteralStringDoc" style="#414868"/>
<entry type="LiteralStringHeredoc" style="#414868"/>
<entry type="LiteralNumber" style="#e0af68"/>
<entry type="LiteralNumberBin" style="#e0af68"/>
<entry type="LiteralNumberHex" style="#e0af68"/>
<entry type="LiteralNumberInteger" style="#e0af68"/>
<entry type="LiteralNumberFloat" style="#e0af68"/>
<entry type="LiteralNumberIntegerLong" style="#e0af68"/>
<entry type="LiteralNumberOct" style="#e0af68"/>
<entry type="Operator" style="bold #9ece6a"/>
<entry type="OperatorWord" style="bold #9ece6a"/>
<entry type="Comment" style="italic #414868"/>
<entry type="CommentSingle" style="italic #414868"/>
<entry type="CommentMultiline" style="italic #414868"/>
<entry type="CommentSpecial" style="italic #414868"/>
<entry type="CommentHashbang" style="italic #414868"/>
<entry type="CommentPreproc" style="italic #414868"/>
<entry type="CommentPreprocFile" style="bold #414868"/>
<entry type="Generic" style="#c0caf5"/>
<entry type="GenericInserted" style="bg:#15161e #9ece6a"/>
<entry type="GenericDeleted" style="#db4b4b bg:#15161e"/>
<entry type="GenericEmph" style="italic #c0caf5"/>
<entry type="GenericStrong" style="bold #c0caf5"/>
<entry type="GenericUnderline" style="underline #c0caf5"/>
<entry type="GenericHeading" style="bold #e0af68"/>
<entry type="GenericSubheading" style="bold #e0af68"/>
<entry type="GenericOutput" style="#c0caf5"/>
<entry type="GenericPrompt" style="#c0caf5"/>
<entry type="GenericError" style="#db4b4b"/>
<entry type="GenericTraceback" style="#db4b4b"/>
</style>

2
vendor/modules.txt vendored
View File

@ -1,4 +1,4 @@
# github.com/alecthomas/chroma/v2 v2.13.0
# github.com/alecthomas/chroma/v2 v2.14.0
## explicit; go 1.19
github.com/alecthomas/chroma/v2
github.com/alecthomas/chroma/v2/formatters/html