diff options
| author | Sophia Pearson <codergal89@gmail.com> | 2022-09-04 12:43:37 +0200 |
|---|---|---|
| committer | Sophia Pearson <codergal89@gmail.com> | 2022-09-04 12:43:37 +0200 |
| commit | 6503e483766d3a4e1907ecd9b69e7db4e86e7cb6 (patch) | |
| tree | cde6ecde91175b99ba610dff0ae16cdb720b0280 /Assets/Styles | |
| parent | 461fec003cdf3144b2e0d97392edd090f457a555 (diff) | |
| download | texty-6503e483766d3a4e1907ecd9b69e7db4e86e7cb6.tar.xz texty-6503e483766d3a4e1907ecd9b69e7db4e86e7cb6.zip | |
gui: set up new default theme
Diffstat (limited to 'Assets/Styles')
| -rw-r--r-- | Assets/Styles/DefaultFlatPanel.tres | 8 | ||||
| -rw-r--r-- | Assets/Styles/DefaultInvertedFlatPanel.tres | 8 | ||||
| -rw-r--r-- | Assets/Styles/GUIBox.tres | 12 | ||||
| -rw-r--r-- | Assets/Styles/GUIBoxDisabled.tres | 12 | ||||
| -rw-r--r-- | Assets/Styles/GUIBoxFocus.tres | 12 | ||||
| -rw-r--r-- | Assets/Styles/GUIBoxHover.tres | 12 | ||||
| -rw-r--r-- | Assets/Styles/GuiBoxPressed.tres | 12 |
7 files changed, 16 insertions, 60 deletions
diff --git a/Assets/Styles/DefaultFlatPanel.tres b/Assets/Styles/DefaultFlatPanel.tres new file mode 100644 index 0000000..0e6999b --- /dev/null +++ b/Assets/Styles/DefaultFlatPanel.tres @@ -0,0 +1,8 @@ +[gd_resource type="StyleBoxFlat" format=2] + +[resource] +content_margin_left = 8.0 +content_margin_right = 8.0 +content_margin_top = 2.0 +content_margin_bottom = 2.0 +bg_color = Color( 0, 0, 0, 1 ) diff --git a/Assets/Styles/DefaultInvertedFlatPanel.tres b/Assets/Styles/DefaultInvertedFlatPanel.tres new file mode 100644 index 0000000..4150cb5 --- /dev/null +++ b/Assets/Styles/DefaultInvertedFlatPanel.tres @@ -0,0 +1,8 @@ +[gd_resource type="StyleBoxFlat" format=2] + +[resource] +content_margin_left = 8.0 +content_margin_right = 8.0 +content_margin_top = 2.0 +content_margin_bottom = 2.0 +bg_color = Color( 0, 0.956863, 0, 1 ) diff --git a/Assets/Styles/GUIBox.tres b/Assets/Styles/GUIBox.tres deleted file mode 100644 index 81e3687..0000000 --- a/Assets/Styles/GUIBox.tres +++ /dev/null @@ -1,12 +0,0 @@ -[gd_resource type="StyleBoxFlat" format=2] - -[resource] -content_margin_left = 8.0 -content_margin_right = 8.0 -content_margin_top = 8.0 -content_margin_bottom = 8.0 -bg_color = Color( 0.1, 0.1, 0.1, 0.627451 ) -corner_radius_top_left = 8 -corner_radius_top_right = 8 -corner_radius_bottom_right = 8 -corner_radius_bottom_left = 8 diff --git a/Assets/Styles/GUIBoxDisabled.tres b/Assets/Styles/GUIBoxDisabled.tres deleted file mode 100644 index 81e3687..0000000 --- a/Assets/Styles/GUIBoxDisabled.tres +++ /dev/null @@ -1,12 +0,0 @@ -[gd_resource type="StyleBoxFlat" format=2] - -[resource] -content_margin_left = 8.0 -content_margin_right = 8.0 -content_margin_top = 8.0 -content_margin_bottom = 8.0 -bg_color = Color( 0.1, 0.1, 0.1, 0.627451 ) -corner_radius_top_left = 8 -corner_radius_top_right = 8 -corner_radius_bottom_right = 8 -corner_radius_bottom_left = 8 diff --git a/Assets/Styles/GUIBoxFocus.tres b/Assets/Styles/GUIBoxFocus.tres deleted file mode 100644 index 4681f62..0000000 --- a/Assets/Styles/GUIBoxFocus.tres +++ /dev/null @@ -1,12 +0,0 @@ -[gd_resource type="StyleBoxFlat" format=2] - -[resource] -content_margin_left = 8.0 -content_margin_right = 8.0 -content_margin_top = 8.0 -content_margin_bottom = 8.0 -bg_color = Color( 0, 0, 0, 0.627451 ) -corner_radius_top_left = 8 -corner_radius_top_right = 8 -corner_radius_bottom_right = 8 -corner_radius_bottom_left = 8 diff --git a/Assets/Styles/GUIBoxHover.tres b/Assets/Styles/GUIBoxHover.tres deleted file mode 100644 index 4681f62..0000000 --- a/Assets/Styles/GUIBoxHover.tres +++ /dev/null @@ -1,12 +0,0 @@ -[gd_resource type="StyleBoxFlat" format=2] - -[resource] -content_margin_left = 8.0 -content_margin_right = 8.0 -content_margin_top = 8.0 -content_margin_bottom = 8.0 -bg_color = Color( 0, 0, 0, 0.627451 ) -corner_radius_top_left = 8 -corner_radius_top_right = 8 -corner_radius_bottom_right = 8 -corner_radius_bottom_left = 8 diff --git a/Assets/Styles/GuiBoxPressed.tres b/Assets/Styles/GuiBoxPressed.tres deleted file mode 100644 index cedec54..0000000 --- a/Assets/Styles/GuiBoxPressed.tres +++ /dev/null @@ -1,12 +0,0 @@ -[gd_resource type="StyleBoxFlat" format=2] - -[resource] -content_margin_left = 8.0 -content_margin_right = 8.0 -content_margin_top = 8.0 -content_margin_bottom = 8.0 -bg_color = Color( 0, 0, 0, 0.862745 ) -corner_radius_top_left = 8 -corner_radius_top_right = 8 -corner_radius_bottom_right = 8 -corner_radius_bottom_left = 8 |
