Add only Hack Regular font and default themes to archive

Keeps the archive small and licensing simpler.
Keep around the fancy fonts such as Noto Color Emoji and Unifont as they
are useful for testing.
With the xrdb import plugin making it easy to import themes, there is
little point in keeping other pre-defined themes around, so remove
these.
This commit is contained in:
Leroy Hopson 2021-07-21 22:15:06 +07:00
parent 568a9835c6
commit d702021d02
No known key found for this signature in database
GPG key ID: D2747312A6DB51AA
45 changed files with 245 additions and 338 deletions

1
.gitattributes vendored
View file

@ -21,6 +21,7 @@
/examples export-ignore /examples export-ignore
/misc export-ignore /misc export-ignore
/test export-ignore /test export-ignore
/themes export-ignore
/.gitattributes export-ignore /.gitattributes export-ignore
/.gitignore export-ignore /.gitignore export-ignore
/.gitmodules export-ignore /.gitmodules export-ignore

View file

@ -39,7 +39,9 @@ func import(source_file, save_path, options, r_platform_variant, r_gen_files):
return err return err
var theme: Theme = XrdbTheme.new() var theme: Theme = XrdbTheme.new()
theme.default_font = preload("../themes/fonts/regular.tres") theme.set_font("Regular", "Terminal", preload("../themes/fonts/regular.tres"))
for font in ["Bold", "Italic", "Bold Italic"]:
theme.set_font(font, "Terminal", null)
var word_regex = RegEx.new() var word_regex = RegEx.new()
word_regex.compile("\\S+") word_regex.compile("\\S+")

View file

@ -1,31 +0,0 @@
[gd_resource type="Theme" load_steps=5 format=2]
[ext_resource path="res://addons/godot_xterm/themes/fonts/bold_italic.tres" type="DynamicFont" id=1]
[ext_resource path="res://addons/godot_xterm/themes/fonts/italic.tres" type="DynamicFont" id=2]
[ext_resource path="res://addons/godot_xterm/themes/fonts/bold.tres" type="DynamicFont" id=3]
[ext_resource path="res://addons/godot_xterm/themes/fonts/regular.tres" type="DynamicFont" id=4]
[resource]
default_font = ExtResource( 4 )
Terminal/colors/Background = Color( 0.0941176, 0.0941176, 0.0941176, 1 )
Terminal/colors/Black = Color( 0, 0, 0, 1 )
Terminal/colors/Blue = Color( 0.486275, 0.686275, 0.760784, 1 )
Terminal/colors/Cyan = Color( 0.52549, 0.756863, 0.72549, 1 )
"Terminal/colors/Dark Grey" = Color( 0.333333, 0.333333, 0.333333, 1 )
Terminal/colors/Foreground = Color( 0.847059, 0.847059, 0.847059, 1 )
Terminal/colors/Green = Color( 0.631373, 0.709804, 0.423529, 1 )
"Terminal/colors/Light Blue" = Color( 0.486275, 0.686275, 0.760784, 1 )
"Terminal/colors/Light Cyan" = Color( 0.52549, 0.756863, 0.72549, 1 )
"Terminal/colors/Light Green" = Color( 0.631373, 0.709804, 0.423529, 1 )
"Terminal/colors/Light Grey" = Color( 0.666667, 0.666667, 0.666667, 1 )
"Terminal/colors/Light Magenta" = Color( 0.729412, 0.545098, 0.686275, 1 )
"Terminal/colors/Light Red" = Color( 0.670588, 0.27451, 0.258824, 1 )
"Terminal/colors/Light Yellow" = Color( 0.968627, 0.792157, 0.533333, 1 )
Terminal/colors/Magenta = Color( 0.729412, 0.545098, 0.686275, 1 )
Terminal/colors/Red = Color( 0.670588, 0.27451, 0.258824, 1 )
Terminal/colors/White = Color( 1, 1, 1, 1 )
Terminal/colors/Yellow = Color( 0.968627, 0.792157, 0.533333, 1 )
Terminal/fonts/Bold = ExtResource( 3 )
"Terminal/fonts/Bold Italic" = ExtResource( 1 )
Terminal/fonts/Italic = ExtResource( 2 )
Terminal/fonts/Regular = ExtResource( 4 )

View file

@ -1,31 +0,0 @@
[gd_resource type="Theme" load_steps=5 format=2]
[ext_resource path="res://addons/godot_xterm/themes/fonts/bold_italic.tres" type="DynamicFont" id=1]
[ext_resource path="res://addons/godot_xterm/themes/fonts/italic.tres" type="DynamicFont" id=2]
[ext_resource path="res://addons/godot_xterm/themes/fonts/bold.tres" type="DynamicFont" id=3]
[ext_resource path="res://addons/godot_xterm/themes/fonts/regular.tres" type="DynamicFont" id=4]
[resource]
default_font = ExtResource( 4 )
Terminal/colors/Background = Color( 0.847059, 0.847059, 0.847059, 1 )
Terminal/colors/Black = Color( 0, 0, 0, 1 )
Terminal/colors/Blue = Color( 0.486275, 0.686275, 0.760784, 1 )
Terminal/colors/Cyan = Color( 0.52549, 0.756863, 0.72549, 1 )
"Terminal/colors/Dark Grey" = Color( 0.333333, 0.333333, 0.333333, 1 )
Terminal/colors/Foreground = Color( 0.0941176, 0.0941176, 0.0941176, 1 )
Terminal/colors/Green = Color( 0.631373, 0.709804, 0.423529, 1 )
"Terminal/colors/Light Blue" = Color( 0.486275, 0.686275, 0.760784, 1 )
"Terminal/colors/Light Cyan" = Color( 0.52549, 0.756863, 0.72549, 1 )
"Terminal/colors/Light Green" = Color( 0.631373, 0.709804, 0.423529, 1 )
"Terminal/colors/Light Grey" = Color( 0.666667, 0.666667, 0.666667, 1 )
"Terminal/colors/Light Magenta" = Color( 0.729412, 0.545098, 0.686275, 1 )
"Terminal/colors/Light Red" = Color( 0.670588, 0.27451, 0.258824, 1 )
"Terminal/colors/Light Yellow" = Color( 0.968627, 0.792157, 0.533333, 1 )
Terminal/colors/Magenta = Color( 0.729412, 0.545098, 0.686275, 1 )
Terminal/colors/Red = Color( 0.670588, 0.27451, 0.258824, 1 )
Terminal/colors/White = Color( 1, 1, 1, 1 )
Terminal/colors/Yellow = Color( 0.968627, 0.792157, 0.533333, 1 )
Terminal/fonts/Bold = ExtResource( 3 )
"Terminal/fonts/Bold Italic" = ExtResource( 1 )
Terminal/fonts/Italic = ExtResource( 2 )
Terminal/fonts/Regular = ExtResource( 4 )

View file

@ -1,9 +1,6 @@
[gd_resource type="Theme" load_steps=5 format=2] [gd_resource type="Theme" load_steps=2 format=2]
[ext_resource path="res://addons/godot_xterm/themes/fonts/regular.tres" type="DynamicFont" id=1] [ext_resource path="res://addons/godot_xterm/themes/fonts/regular.tres" type="DynamicFont" id=1]
[ext_resource path="res://addons/godot_xterm/themes/fonts/bold_italic.tres" type="DynamicFont" id=2]
[ext_resource path="res://addons/godot_xterm/themes/fonts/italic.tres" type="DynamicFont" id=3]
[ext_resource path="res://addons/godot_xterm/themes/fonts/bold.tres" type="DynamicFont" id=4]
[resource] [resource]
default_font = ExtResource( 1 ) default_font = ExtResource( 1 )
@ -25,7 +22,7 @@ Terminal/colors/Magenta = Color( 0.623529, 0.439216, 1, 1 )
Terminal/colors/Red = Color( 1, 0.47, 0.42, 1 ) Terminal/colors/Red = Color( 1, 0.47, 0.42, 1 )
Terminal/colors/White = Color( 1, 1, 1, 1 ) Terminal/colors/White = Color( 1, 1, 1, 1 )
Terminal/colors/Yellow = Color( 1, 0.866667, 0.396078, 1 ) Terminal/colors/Yellow = Color( 1, 0.866667, 0.396078, 1 )
Terminal/fonts/Bold = ExtResource( 4 ) Terminal/fonts/Bold = null
"Terminal/fonts/Bold Italic" = ExtResource( 2 ) "Terminal/fonts/Bold Italic" = null
Terminal/fonts/Italic = ExtResource( 3 ) Terminal/fonts/Italic = null
Terminal/fonts/Regular = ExtResource( 1 ) Terminal/fonts/Regular = ExtResource( 1 )

View file

@ -1,8 +1,5 @@
[gd_resource type="Theme" load_steps=5 format=2] [gd_resource type="Theme" load_steps=2 format=2]
[ext_resource path="res://addons/godot_xterm/themes/fonts/bold_italic.tres" type="DynamicFont" id=1]
[ext_resource path="res://addons/godot_xterm/themes/fonts/italic.tres" type="DynamicFont" id=2]
[ext_resource path="res://addons/godot_xterm/themes/fonts/bold.tres" type="DynamicFont" id=3]
[ext_resource path="res://addons/godot_xterm/themes/fonts/regular.tres" type="DynamicFont" id=4] [ext_resource path="res://addons/godot_xterm/themes/fonts/regular.tres" type="DynamicFont" id=4]
[resource] [resource]
@ -25,7 +22,7 @@ Terminal/colors/Magenta = Color( 0.439216, 0.164706, 1, 1 )
Terminal/colors/Red = Color( 0.74902, 0.352941, 0.313726, 1 ) Terminal/colors/Red = Color( 0.74902, 0.352941, 0.313726, 1 )
Terminal/colors/White = Color( 1, 1, 1, 1 ) Terminal/colors/White = Color( 1, 1, 1, 1 )
Terminal/colors/Yellow = Color( 0.698039, 0.572549, 0.0627451, 1 ) Terminal/colors/Yellow = Color( 0.698039, 0.572549, 0.0627451, 1 )
Terminal/fonts/Bold = ExtResource( 3 ) Terminal/fonts/Bold = null
"Terminal/fonts/Bold Italic" = ExtResource( 1 ) "Terminal/fonts/Bold Italic" = null
Terminal/fonts/Italic = ExtResource( 2 ) Terminal/fonts/Italic = null
Terminal/fonts/Regular = ExtResource( 4 ) Terminal/fonts/Regular = ExtResource( 4 )

View file

@ -0,0 +1,11 @@
[gd_resource type="Theme" load_steps=2 format=2]
[sub_resource type="DynamicFont" id=1]
size = 14
extra_spacing_bottom = 1
[resource]
Terminal/fonts/Bold = null
"Terminal/fonts/Bold Italic" = null
Terminal/fonts/Italic = null
Terminal/fonts/Regular = SubResource( 1 )

View file

@ -1,15 +0,0 @@
[gd_resource type="DynamicFont" load_steps=6 format=2]
[ext_resource path="res://addons/godot_xterm/themes/fonts/hack/hack_bold-3.003.ttf" type="DynamicFontData" id=1]
[ext_resource path="res://addons/godot_xterm/themes/fonts/nerd_fonts/symbols_2048_em_nerd_font_complete-2.1.0.ttf" type="DynamicFontData" id=2]
[ext_resource path="res://addons/godot_xterm/themes/fonts/noto_color_emoji/noto_color_emoji-20201206-phase3.ttf" type="DynamicFontData" id=3]
[ext_resource path="res://addons/godot_xterm/themes/fonts/unifont/unifont-13.0.06.ttf" type="DynamicFontData" id=4]
[ext_resource path="res://addons/godot_xterm/themes/fonts/unifont/unifont_upper-13.0.06.ttf" type="DynamicFontData" id=5]
[resource]
size = 14
font_data = ExtResource( 1 )
fallback/0 = ExtResource( 2 )
fallback/1 = ExtResource( 3 )
fallback/2 = ExtResource( 4 )
fallback/3 = ExtResource( 5 )

View file

@ -1,15 +0,0 @@
[gd_resource type="DynamicFont" load_steps=6 format=2]
[ext_resource path="res://addons/godot_xterm/themes/fonts/nerd_fonts/symbols_2048_em_nerd_font_complete-2.1.0.ttf" type="DynamicFontData" id=1]
[ext_resource path="res://addons/godot_xterm/themes/fonts/hack/hack_bold_italic-3.003.ttf" type="DynamicFontData" id=2]
[ext_resource path="res://addons/godot_xterm/themes/fonts/noto_color_emoji/noto_color_emoji-20201206-phase3.ttf" type="DynamicFontData" id=3]
[ext_resource path="res://addons/godot_xterm/themes/fonts/unifont/unifont-13.0.06.ttf" type="DynamicFontData" id=4]
[ext_resource path="res://addons/godot_xterm/themes/fonts/unifont/unifont_upper-13.0.06.ttf" type="DynamicFontData" id=5]
[resource]
size = 14
font_data = ExtResource( 2 )
fallback/0 = ExtResource( 1 )
fallback/1 = ExtResource( 3 )
fallback/2 = ExtResource( 4 )
fallback/3 = ExtResource( 5 )

View file

@ -1,15 +1,8 @@
[gd_resource type="DynamicFont" load_steps=6 format=2] [gd_resource type="DynamicFont" load_steps=2 format=2]
[ext_resource path="res://addons/godot_xterm/themes/fonts/nerd_fonts/symbols_2048_em_nerd_font_complete-2.1.0.ttf" type="DynamicFontData" id=1]
[ext_resource path="res://addons/godot_xterm/themes/fonts/noto_color_emoji/noto_color_emoji-20201206-phase3.ttf" type="DynamicFontData" id=2]
[ext_resource path="res://addons/godot_xterm/themes/fonts/unifont/unifont-13.0.06.ttf" type="DynamicFontData" id=3]
[ext_resource path="res://addons/godot_xterm/themes/fonts/hack/hack_regular-3.003.ttf" type="DynamicFontData" id=4] [ext_resource path="res://addons/godot_xterm/themes/fonts/hack/hack_regular-3.003.ttf" type="DynamicFontData" id=4]
[ext_resource path="res://addons/godot_xterm/themes/fonts/unifont/unifont_upper-13.0.06.ttf" type="DynamicFontData" id=5]
[resource] [resource]
size = 14 size = 14
extra_spacing_bottom = 1
font_data = ExtResource( 4 ) font_data = ExtResource( 4 )
fallback/0 = ExtResource( 1 )
fallback/1 = ExtResource( 2 )
fallback/2 = ExtResource( 3 )
fallback/3 = ExtResource( 5 )

View file

@ -1,31 +0,0 @@
[gd_resource type="Theme" load_steps=5 format=2]
[ext_resource path="res://addons/godot_xterm/themes/fonts/bold_italic.tres" type="DynamicFont" id=1]
[ext_resource path="res://addons/godot_xterm/themes/fonts/italic.tres" type="DynamicFont" id=2]
[ext_resource path="res://addons/godot_xterm/themes/fonts/bold.tres" type="DynamicFont" id=3]
[ext_resource path="res://addons/godot_xterm/themes/fonts/regular.tres" type="DynamicFont" id=4]
[resource]
default_font = ExtResource( 4 )
Terminal/colors/Background = Color( 0.172549, 0.172549, 0.172549, 1 )
Terminal/colors/Black = Color( 0.247059, 0.247059, 0.247059, 1 )
Terminal/colors/Blue = Color( 0.603922, 0.721569, 0.843137, 1 )
Terminal/colors/Cyan = Color( 0.54902, 0.815686, 0.827451, 1 )
"Terminal/colors/Dark Grey" = Color( 0.439216, 0.564706, 0.501961, 1 )
Terminal/colors/Foreground = Color( 0.862745, 0.862745, 0.8, 1 )
Terminal/colors/Green = Color( 0.376471, 0.705882, 0.541176, 1 )
"Terminal/colors/Light Blue" = Color( 0.580392, 0.74902, 0.952941, 1 )
"Terminal/colors/Light Cyan" = Color( 0.576471, 0.878431, 0.890196, 1 )
"Terminal/colors/Light Green" = Color( 0.447059, 0.835294, 0.639216, 1 )
"Terminal/colors/Light Grey" = Color( 1, 1, 1, 1 )
"Terminal/colors/Light Magenta" = Color( 0.92549, 0.576471, 0.827451, 1 )
"Terminal/colors/Light Red" = Color( 0.862745, 0.639216, 0.639216, 1 )
"Terminal/colors/Light Yellow" = Color( 0.941176, 0.87451, 0.686275, 1 )
Terminal/colors/Magenta = Color( 0.862745, 0.54902, 0.764706, 1 )
Terminal/colors/Red = Color( 0.439216, 0.313726, 0.313726, 1 )
Terminal/colors/White = Color( 0.862745, 0.862745, 0.8, 1 )
Terminal/colors/Yellow = Color( 0.87451, 0.686275, 0.541176, 1 )
Terminal/fonts/Bold = ExtResource( 3 )
"Terminal/fonts/Bold Italic" = ExtResource( 1 )
Terminal/fonts/Italic = ExtResource( 2 )
Terminal/fonts/Regular = ExtResource( 4 )

View file

@ -1,31 +0,0 @@
[gd_resource type="Theme" load_steps=5 format=2]
[ext_resource path="res://addons/godot_xterm/themes/fonts/bold_italic.tres" type="DynamicFont" id=1]
[ext_resource path="res://addons/godot_xterm/themes/fonts/italic.tres" type="DynamicFont" id=2]
[ext_resource path="res://addons/godot_xterm/themes/fonts/bold.tres" type="DynamicFont" id=3]
[ext_resource path="res://addons/godot_xterm/themes/fonts/regular.tres" type="DynamicFont" id=4]
[resource]
default_font = ExtResource( 4 )
Terminal/colors/Background = Color( 0.027451, 0.211765, 0.258824, 1 )
Terminal/colors/Black = Color( 0.027451, 0.211765, 0.258824, 1 )
Terminal/colors/Blue = Color( 0.14902, 0.545098, 0.823529, 1 )
Terminal/colors/Cyan = Color( 0.164706, 0.631373, 0.596078, 1 )
"Terminal/colors/Dark Grey" = Color( 0, 0.168627, 0.211765, 1 )
Terminal/colors/Foreground = Color( 0.933333, 0.909804, 0.835294, 1 )
Terminal/colors/Green = Color( 0.521569, 0.6, 0, 1 )
"Terminal/colors/Light Blue" = Color( 0.513726, 0.580392, 0.588235, 1 )
"Terminal/colors/Light Cyan" = Color( 0.576471, 0.631373, 0.631373, 1 )
"Terminal/colors/Light Green" = Color( 0.345098, 0.431373, 0.458824, 1 )
"Terminal/colors/Light Grey" = Color( 0.933333, 0.909804, 0.835294, 1 )
"Terminal/colors/Light Magenta" = Color( 0.423529, 0.443137, 0.768627, 1 )
"Terminal/colors/Light Red" = Color( 0.796078, 0.294118, 0.0862745, 1 )
"Terminal/colors/Light Yellow" = Color( 0.396078, 0.482353, 0.513726, 1 )
Terminal/colors/Magenta = Color( 0.827451, 0.211765, 0.509804, 1 )
Terminal/colors/Red = Color( 0.862745, 0.196078, 0.184314, 1 )
Terminal/colors/White = Color( 0.992157, 0.964706, 0.890196, 1 )
Terminal/colors/Yellow = Color( 0.709804, 0.537255, 0, 1 )
Terminal/fonts/Bold = ExtResource( 3 )
"Terminal/fonts/Bold Italic" = ExtResource( 1 )
Terminal/fonts/Italic = ExtResource( 2 )
Terminal/fonts/Regular = ExtResource( 4 )

View file

@ -1,31 +0,0 @@
[gd_resource type="Theme" load_steps=5 format=2]
[ext_resource path="res://addons/godot_xterm/themes/fonts/bold_italic.tres" type="DynamicFont" id=1]
[ext_resource path="res://addons/godot_xterm/themes/fonts/italic.tres" type="DynamicFont" id=2]
[ext_resource path="res://addons/godot_xterm/themes/fonts/bold.tres" type="DynamicFont" id=3]
[ext_resource path="res://addons/godot_xterm/themes/fonts/regular.tres" type="DynamicFont" id=4]
[resource]
default_font = ExtResource( 4 )
Terminal/colors/Background = Color( 0, 0, 0, 1 )
Terminal/colors/Black = Color( 0, 0, 0, 1 )
Terminal/colors/Blue = Color( 0.14902, 0.545098, 0.823529, 1 )
Terminal/colors/Cyan = Color( 0.164706, 0.631373, 0.596078, 1 )
"Terminal/colors/Dark Grey" = Color( 0, 0.168627, 0.211765, 1 )
Terminal/colors/Foreground = Color( 0.933333, 0.909804, 0.835294, 1 )
Terminal/colors/Green = Color( 0.521569, 0.6, 0, 1 )
"Terminal/colors/Light Blue" = Color( 0.513726, 0.580392, 0.588235, 1 )
"Terminal/colors/Light Cyan" = Color( 0.576471, 0.631373, 0.631373, 1 )
"Terminal/colors/Light Green" = Color( 0.345098, 0.431373, 0.458824, 1 )
"Terminal/colors/Light Grey" = Color( 0.933333, 0.909804, 0.835294, 1 )
"Terminal/colors/Light Magenta" = Color( 0.423529, 0.443137, 0.768627, 1 )
"Terminal/colors/Light Red" = Color( 0.796078, 0.294118, 0.0862745, 1 )
"Terminal/colors/Light Yellow" = Color( 0.396078, 0.482353, 0.513726, 1 )
Terminal/colors/Magenta = Color( 0.827451, 0.211765, 0.509804, 1 )
Terminal/colors/Red = Color( 0.862745, 0.196078, 0.184314, 1 )
Terminal/colors/White = Color( 0.992157, 0.964706, 0.890196, 1 )
Terminal/colors/Yellow = Color( 0.709804, 0.537255, 0, 1 )
Terminal/fonts/Bold = ExtResource( 3 )
"Terminal/fonts/Bold Italic" = ExtResource( 1 )
Terminal/fonts/Italic = ExtResource( 2 )
Terminal/fonts/Regular = ExtResource( 4 )

View file

@ -1,31 +0,0 @@
[gd_resource type="Theme" load_steps=5 format=2]
[ext_resource path="res://addons/godot_xterm/themes/fonts/bold_italic.tres" type="DynamicFont" id=1]
[ext_resource path="res://addons/godot_xterm/themes/fonts/italic.tres" type="DynamicFont" id=2]
[ext_resource path="res://addons/godot_xterm/themes/fonts/bold.tres" type="DynamicFont" id=3]
[ext_resource path="res://addons/godot_xterm/themes/fonts/regular.tres" type="DynamicFont" id=4]
[resource]
default_font = ExtResource( 4 )
Terminal/colors/Background = Color( 0.933333, 0.909804, 0.835294, 1 )
Terminal/colors/Black = Color( 0.027451, 0.211765, 0.258824, 1 )
Terminal/colors/Blue = Color( 0.14902, 0.545098, 0.823529, 1 )
Terminal/colors/Cyan = Color( 0.164706, 0.631373, 0.596078, 1 )
"Terminal/colors/Dark Grey" = Color( 0, 0.168627, 0.211765, 1 )
Terminal/colors/Foreground = Color( 0.027451, 0.211765, 0.258824, 1 )
Terminal/colors/Green = Color( 0.521569, 0.6, 0, 1 )
"Terminal/colors/Light Blue" = Color( 0.513726, 0.580392, 0.588235, 1 )
"Terminal/colors/Light Cyan" = Color( 0.576471, 0.631373, 0.631373, 1 )
"Terminal/colors/Light Green" = Color( 0.345098, 0.431373, 0.458824, 1 )
"Terminal/colors/Light Grey" = Color( 0.933333, 0.909804, 0.835294, 1 )
"Terminal/colors/Light Magenta" = Color( 0.423529, 0.443137, 0.768627, 1 )
"Terminal/colors/Light Red" = Color( 0.796078, 0.294118, 0.0862745, 1 )
"Terminal/colors/Light Yellow" = Color( 0.396078, 0.482353, 0.513726, 1 )
Terminal/colors/Magenta = Color( 0.827451, 0.211765, 0.509804, 1 )
Terminal/colors/Red = Color( 0.862745, 0.196078, 0.184314, 1 )
Terminal/colors/White = Color( 0.992157, 0.964706, 0.890196, 1 )
Terminal/colors/Yellow = Color( 0.709804, 0.537255, 0, 1 )
Terminal/fonts/Bold = ExtResource( 3 )
"Terminal/fonts/Bold Italic" = ExtResource( 1 )
Terminal/fonts/Italic = ExtResource( 2 )
Terminal/fonts/Regular = ExtResource( 4 )

32
themes/default.tres Normal file
View file

@ -0,0 +1,32 @@
[gd_resource type="Theme" load_steps=5 format=2]
[ext_resource path="res://addons/godot_xterm/themes/fonts/regular.tres" type="DynamicFont" id=1]
[ext_resource path="res://themes/fonts/bold_italic.tres" type="DynamicFont" id=2]
[ext_resource path="res://themes/fonts/italic.tres" type="DynamicFont" id=3]
[ext_resource path="res://themes/fonts/bold.tres" type="DynamicFont" id=4]
[resource]
default_font = ExtResource( 1 )
Terminal/colors/Background = Color( 0.12549, 0.145098, 0.192157, 1 )
Terminal/colors/Black = Color( 0, 0, 0, 1 )
Terminal/colors/Blue = Color( 0.341176, 0.698039, 1, 1 )
Terminal/colors/Cyan = Color( 0.4, 0.901961, 1, 1 )
"Terminal/colors/Dark Grey" = Color( 0.462745, 0.47451, 0.509804, 1 )
Terminal/colors/Foreground = Color( 0.8, 0.807843, 0.827451, 1 )
Terminal/colors/Green = Color( 0.388235, 0.760784, 0.34902, 1 )
"Terminal/colors/Light Blue" = Color( 0.737255, 0.878431, 1, 1 )
"Terminal/colors/Light Cyan" = Color( 0.776471, 1, 0.929412, 1 )
"Terminal/colors/Light Green" = Color( 0.258824, 1, 0.760784, 1 )
"Terminal/colors/Light Grey" = Color( 0.8, 0.807843, 0.827451, 1 )
"Terminal/colors/Light Magenta" = Color( 0.807843, 0.643137, 0.945098, 1 )
"Terminal/colors/Light Red" = Color( 1, 0.439216, 0.521569, 1 )
"Terminal/colors/Light Yellow" = Color( 1, 0.92549, 0.627451, 1 )
Terminal/colors/Magenta = Color( 0.623529, 0.439216, 1, 1 )
Terminal/colors/Red = Color( 1, 0.47, 0.42, 1 )
Terminal/colors/White = Color( 1, 1, 1, 1 )
Terminal/colors/Yellow = Color( 1, 0.866667, 0.396078, 1 )
Terminal/fonts/Bold = ExtResource( 4 )
"Terminal/fonts/Bold Italic" = ExtResource( 2 )
Terminal/fonts/Italic = ExtResource( 3 )
Terminal/fonts/Regular = ExtResource( 1 )

15
themes/fonts/bold.tres Normal file
View file

@ -0,0 +1,15 @@
[gd_resource type="DynamicFont" load_steps=6 format=2]
[ext_resource path="res://themes/fonts/hack/hack_bold-3.003.ttf" type="DynamicFontData" id=1]
[ext_resource path="res://themes/fonts/nerd_fonts/symbols_2048_em_nerd_font_complete-2.1.0.ttf" type="DynamicFontData" id=2]
[ext_resource path="res://themes/fonts/noto_color_emoji/noto_color_emoji-20201206-phase3.ttf" type="DynamicFontData" id=3]
[ext_resource path="res://themes/fonts/unifont/unifont-13.0.06.ttf" type="DynamicFontData" id=4]
[ext_resource path="res://themes/fonts/unifont/unifont_upper-13.0.06.ttf" type="DynamicFontData" id=5]
[resource]
size = 14
font_data = ExtResource( 1 )
fallback/0 = ExtResource( 2 )
fallback/1 = ExtResource( 3 )
fallback/2 = ExtResource( 4 )
fallback/3 = ExtResource( 5 )

View file

@ -0,0 +1,15 @@
[gd_resource type="DynamicFont" load_steps=6 format=2]
[ext_resource path="res://themes/fonts/nerd_fonts/symbols_2048_em_nerd_font_complete-2.1.0.ttf" type="DynamicFontData" id=1]
[ext_resource path="res://themes/fonts/hack/hack_bold_italic-3.003.ttf" type="DynamicFontData" id=2]
[ext_resource path="res://themes/fonts/noto_color_emoji/noto_color_emoji-20201206-phase3.ttf" type="DynamicFontData" id=3]
[ext_resource path="res://themes/fonts/unifont/unifont-13.0.06.ttf" type="DynamicFontData" id=4]
[ext_resource path="res://themes/fonts/unifont/unifont_upper-13.0.06.ttf" type="DynamicFontData" id=5]
[resource]
size = 14
font_data = ExtResource( 2 )
fallback/0 = ExtResource( 1 )
fallback/1 = ExtResource( 3 )
fallback/2 = ExtResource( 4 )
fallback/3 = ExtResource( 5 )

View file

@ -0,0 +1,45 @@
The work in the Hack project is Copyright 2018 Source Foundry Authors and licensed under the MIT License
The work in the DejaVu project was committed to the public domain.
Bitstream Vera Sans Mono Copyright 2003 Bitstream Inc. and licensed under the Bitstream Vera License with Reserved Font Names "Bitstream" and "Vera"
### MIT License
Copyright (c) 2018 Source Foundry Authors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
### BITSTREAM VERA LICENSE
Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is a trademark of Bitstream, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license ("Fonts") and associated documentation files (the "Font Software"), to reproduce and distribute the Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions:
The above copyright and trademark notices and this permission notice shall be included in all copies of one or more of the Font Software typefaces.
The Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed to names not containing either the words "Bitstream" or the word "Vera".
This License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is distributed under the "Bitstream Vera" names.
The Font Software may be sold as part of a larger software package but no copy of one or more of the Font Software typefaces may be sold by itself.
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.
Except as contained in this notice, the names of Gnome, the Gnome Foundation, and Bitstream Inc., shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Font Software without prior written authorization from the Gnome Foundation or Bitstream Inc., respectively. For further information, contact: fonts at gnome dot org.

15
themes/fonts/italic.tres Normal file
View file

@ -0,0 +1,15 @@
[gd_resource type="DynamicFont" load_steps=6 format=2]
[ext_resource path="res://themes/fonts/nerd_fonts/symbols_2048_em_nerd_font_complete-2.1.0.ttf" type="DynamicFontData" id=1]
[ext_resource path="res://themes/fonts/noto_color_emoji/noto_color_emoji-20201206-phase3.ttf" type="DynamicFontData" id=2]
[ext_resource path="res://themes/fonts/unifont/unifont-13.0.06.ttf" type="DynamicFontData" id=3]
[ext_resource path="res://themes/fonts/hack/hack_italic-3.003.ttf" type="DynamicFontData" id=4]
[ext_resource path="res://themes/fonts/unifont/unifont_upper-13.0.06.ttf" type="DynamicFontData" id=5]
[resource]
size = 14
font_data = ExtResource( 4 )
fallback/0 = ExtResource( 1 )
fallback/1 = ExtResource( 2 )
fallback/2 = ExtResource( 3 )
fallback/3 = ExtResource( 5 )

View file

@ -1,97 +1,97 @@
Copyright (c) <dates>, <Copyright Holder> (<URL|email>), Copyright (c) <dates>, <Copyright Holder> (<URL|email>),
with Reserved Font Name <Reserved Font Name>. with Reserved Font Name <Reserved Font Name>.
Copyright (c) <dates>, <additional Copyright Holder> (<URL|email>), Copyright (c) <dates>, <additional Copyright Holder> (<URL|email>),
with Reserved Font Name <additional Reserved Font Name>. with Reserved Font Name <additional Reserved Font Name>.
Copyright (c) <dates>, <additional Copyright Holder> (<URL|email>). Copyright (c) <dates>, <additional Copyright Holder> (<URL|email>).
This Font Software is licensed under the SIL Open Font License, Version 1.1. This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at: This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL http://scripts.sil.org/OFL
----------------------------------------------------------- -----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
----------------------------------------------------------- -----------------------------------------------------------
PREAMBLE PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership open framework in which fonts may be shared and improved in partnership
with others. with others.
The OFL allows the licensed fonts to be used, studied, modified and The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded, fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives, names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives. to any document created using the fonts or their derivatives.
DEFINITIONS DEFINITIONS
"Font Software" refers to the set of files released by the Copyright "Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation. include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the "Reserved Font Name" refers to any names specified as such after the
copyright statement(s). copyright statement(s).
"Original Version" refers to the collection of Font Software components as "Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s). distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting, "Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a Original Version, by changing formats or by porting the Font Software to a
new environment. new environment.
"Author" refers to any designer, engineer, programmer, technical "Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software. writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify, a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions: Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components, 1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself. in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled, 2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user. binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font 3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as Copyright Holder. This restriction only applies to the primary font name as
presented to the users. presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written Copyright Holder(s) and the Author(s) or with their explicit written
permission. permission.
5) The Font Software, modified or unmodified, in part or in whole, 5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created remain under this license does not apply to any document created
using the Font Software. using the Font Software.
TERMINATION TERMINATION
This license becomes null and void if any of the above conditions are This license becomes null and void if any of the above conditions are
not met. not met.
DISCLAIMER DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE. OTHER DEALINGS IN THE FONT SOFTWARE.

View file

@ -3,7 +3,7 @@
[ext_resource path="res://addons/godot_xterm/themes/fonts/nerd_fonts/symbols_2048_em_nerd_font_complete-2.1.0.ttf" type="DynamicFontData" id=1] [ext_resource path="res://addons/godot_xterm/themes/fonts/nerd_fonts/symbols_2048_em_nerd_font_complete-2.1.0.ttf" type="DynamicFontData" id=1]
[ext_resource path="res://addons/godot_xterm/themes/fonts/noto_color_emoji/noto_color_emoji-20201206-phase3.ttf" type="DynamicFontData" id=2] [ext_resource path="res://addons/godot_xterm/themes/fonts/noto_color_emoji/noto_color_emoji-20201206-phase3.ttf" type="DynamicFontData" id=2]
[ext_resource path="res://addons/godot_xterm/themes/fonts/unifont/unifont-13.0.06.ttf" type="DynamicFontData" id=3] [ext_resource path="res://addons/godot_xterm/themes/fonts/unifont/unifont-13.0.06.ttf" type="DynamicFontData" id=3]
[ext_resource path="res://addons/godot_xterm/themes/fonts/hack/hack_italic-3.003.ttf" type="DynamicFontData" id=4] [ext_resource path="res://addons/godot_xterm/themes/fonts/hack/hack_regular-3.003.ttf" type="DynamicFontData" id=4]
[ext_resource path="res://addons/godot_xterm/themes/fonts/unifont/unifont_upper-13.0.06.ttf" type="DynamicFontData" id=5] [ext_resource path="res://addons/godot_xterm/themes/fonts/unifont/unifont_upper-13.0.06.ttf" type="DynamicFontData" id=5]
[resource] [resource]