-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathxed.tera
More file actions
104 lines (86 loc) · 4.59 KB
/
Copy pathxed.tera
File metadata and controls
104 lines (86 loc) · 4.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
---
whiskers:
version: "^2.2.0"
matrix:
- flavor
filename: "src/{{ flavor.identifier }}.xml"
---
{%- set palette = flavor.colors -%}
<?xml version="1.0" encoding="UTF-8"?>
<!--
{{ read_file(path="LICENSE") }}
-->
<style-scheme id="catppuccin-{{ flavor.identifier }}" _name="Catppuccin {{ flavor.name }}" version="1.0">
<author>Catppuccin</author>
<_description>Soothing pastel theme for Xed</_description>
<!-- Catppuccin {{ flavor.name }} -->
{%- for _, color in palette %}
<color name="{{ color.identifier }}" value="#{{ color.hex }}"/>
{%- endfor %}
<!-- Global Settings -->
<style name="text" foreground="text" background="base"/>
<style name="selection" foreground="text" background="surface2"/>
<style name="selection-unfocused" foreground="text" background="overlay2"/>
<style name="cursor" foreground="rosewater"/>
<style name="secondary-cursor" foreground="rosewater"/>
<style name="current-line" background="surface0"/>
<style name="line-numbers" foreground="overlay1" background="base"/>
<style name="background-pattern" background="rosewater"/>
<!-- Bracket Matching -->
<style name="bracket-match" foreground="mauve"/>
<style name="bracket-mismatch" foreground="red" background="base"/>
<!-- Right Margin -->
<style name="right-margin" foreground="text" background="crust"/>
<!-- Search Matching -->
<style name="search-match" foreground="text" background="teal"/>
<!-- Comments -->
<style name="def:comment" foreground="overlay2"/>
<style name="def:shebang" foreground="overlay0" bold="true"/>
<style name="def:doc-comment-element" italic="true"/>
<!-- Constants and variables -->
<style name="def:constant" foreground="peach"/>
<style name="def:string" foreground="green"/>
<style name="def:special-char" foreground="pink"/>
<style name="def:special-constant" foreground="peach" bold="true"/>
<style name="def:number" foreground="peach"/>
<style name="def:floating-point" foreground="peach"/>
<style name="def:boolean" foreground="peach"/>
<style name="def:keyword" foreground="mauve" bold="true"/>
<style name="def:builtin" foreground="red" bold="true"/>
<style name="def:variable" foreground="maroon"/>
<!-- Identifiers -->
<style name="def:identifier" foreground="blue"/>
<!-- Statements -->
<style name="def:statement" foreground="peach"/>
<!-- Types -->
<style name="def:type" foreground="yellow"/>
<!-- Operators -->
<style name="def:operator" foreground="sky"/>
<!-- Markup -->
<style name="def:emphasis" italic="true"/>
<style name="def:strong-emphasis" foreground="yellow" bold="true"/>
<style name="def:inline-code" foreground="green"/>
<style name="def:insertion" underline="single"/>
<style name="def:deletion" strikethrough="true"/>
<style name="def:link-text" foreground="lavender"/>
<style name="def:link-symbol" foreground="blue" bold="true"/>
<style name="def:link-destination" foreground="blue" italic="true" underline="single"/>
<style name="def:heading" foreground="red" bold="true"/>
<style name="def:thematic-break" foreground="green" bold="true"/>
<style name="def:preformatted-section" foreground="green"/>
<style name="def:list-marker" foreground="teal" bold="true"/>
<!-- Others -->
<style name="def:preprocessor" foreground="sky"/>
<style name="def:error" foreground="red" bold="true"/>
<style name="def:warning" background="yellow"/>
<style name="def:note" foreground="lavender" bold="true"/>
<style name="def:net-address" foreground="blue" italic="true" underline="single"/>
<style name="def:underlined" italic="true" underline="single"/>
<style name="def:function" foreground="blue"/>
<!-- Diff -->
<style name="diff:location" foreground="peach"/>
<style name="diff:changed-line" foreground="blue"/>
<style name="diff:added-line" foreground="green"/>
<style name="diff:removed-line" foreground="red"/>
<style name="diff:special-case" foreground="peach"/>
</style-scheme>