From c6141fea831a30a0d2de24b3c02375a01014ec97 Mon Sep 17 00:00:00 2001 From: GriffinR Date: Mon, 22 Feb 2021 12:12:35 -0500 Subject: Document easy chat --- graphics/easy_chat/button_window.png | Bin 0 -> 419 bytes graphics/easy_chat/cursor.png | Bin 199 -> 0 bytes graphics/easy_chat/rectangle_cursor.png | Bin 0 -> 199 bytes graphics/easy_chat/rwindow.png | Bin 419 -> 0 bytes graphics/easy_chat/text_input_frame.png | Bin 0 -> 260 bytes graphics/easy_chat/text_input_frame_green.pal | 19 +++++++++++++++++++ graphics/easy_chat/text_input_frame_orange.pal | 19 +++++++++++++++++++ 7 files changed, 38 insertions(+) create mode 100644 graphics/easy_chat/button_window.png delete mode 100644 graphics/easy_chat/cursor.png create mode 100644 graphics/easy_chat/rectangle_cursor.png delete mode 100644 graphics/easy_chat/rwindow.png create mode 100644 graphics/easy_chat/text_input_frame.png create mode 100644 graphics/easy_chat/text_input_frame_green.pal create mode 100644 graphics/easy_chat/text_input_frame_orange.pal (limited to 'graphics/easy_chat') diff --git a/graphics/easy_chat/button_window.png b/graphics/easy_chat/button_window.png new file mode 100644 index 000000000..6319f9a5d Binary files /dev/null and b/graphics/easy_chat/button_window.png differ diff --git a/graphics/easy_chat/cursor.png b/graphics/easy_chat/cursor.png deleted file mode 100644 index 502ea2d69..000000000 Binary files a/graphics/easy_chat/cursor.png and /dev/null differ diff --git a/graphics/easy_chat/rectangle_cursor.png b/graphics/easy_chat/rectangle_cursor.png new file mode 100644 index 000000000..502ea2d69 Binary files /dev/null and b/graphics/easy_chat/rectangle_cursor.png differ diff --git a/graphics/easy_chat/rwindow.png b/graphics/easy_chat/rwindow.png deleted file mode 100644 index 6319f9a5d..000000000 Binary files a/graphics/easy_chat/rwindow.png and /dev/null differ diff --git a/graphics/easy_chat/text_input_frame.png b/graphics/easy_chat/text_input_frame.png new file mode 100644 index 000000000..c0fbba87d Binary files /dev/null and b/graphics/easy_chat/text_input_frame.png differ diff --git a/graphics/easy_chat/text_input_frame_green.pal b/graphics/easy_chat/text_input_frame_green.pal new file mode 100644 index 000000000..c64a7216f --- /dev/null +++ b/graphics/easy_chat/text_input_frame_green.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +115 197 164 +189 255 139 +156 230 106 +123 180 90 +180 213 255 +139 180 230 +115 139 172 +0 0 0 +255 131 131 +238 82 82 +255 238 180 +255 255 213 +115 115 115 +180 189 180 +222 213 222 +255 255 255 diff --git a/graphics/easy_chat/text_input_frame_orange.pal b/graphics/easy_chat/text_input_frame_orange.pal new file mode 100644 index 000000000..165bad8de --- /dev/null +++ b/graphics/easy_chat/text_input_frame_orange.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +115 197 164 +255 189 115 +255 139 57 +205 98 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +255 238 180 +255 255 213 +115 115 115 +180 189 180 +222 213 222 +255 255 255 -- cgit v1.2.3 From 5ba858d19c7134c6bf40f97b276b819e3ff4261a Mon Sep 17 00:00:00 2001 From: GriffinR Date: Wed, 31 Mar 2021 16:56:10 -0400 Subject: Label missing easy chat symbols --- graphics/easy_chat/interview.pal | 19 +++++++++++++++++++ graphics/easy_chat/interview_frame.png | Bin 0 -> 192 bytes graphics/easy_chat/text.pal | 9 +++++++++ graphics/easy_chat/title_text.pal | 7 +++++++ 4 files changed, 35 insertions(+) create mode 100644 graphics/easy_chat/interview.pal create mode 100644 graphics/easy_chat/interview_frame.png create mode 100644 graphics/easy_chat/text.pal create mode 100644 graphics/easy_chat/title_text.pal (limited to 'graphics/easy_chat') diff --git a/graphics/easy_chat/interview.pal b/graphics/easy_chat/interview.pal new file mode 100644 index 000000000..dfe91b5de --- /dev/null +++ b/graphics/easy_chat/interview.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +255 255 148 +255 197 148 +238 139 90 +189 90 41 +255 213 213 +246 180 180 +197 131 131 +0 0 0 +0 0 0 +0 0 0 +0 0 0 +41 49 49 +98 98 98 +180 189 180 +222 213 222 +255 255 255 diff --git a/graphics/easy_chat/interview_frame.png b/graphics/easy_chat/interview_frame.png new file mode 100644 index 000000000..63470e729 Binary files /dev/null and b/graphics/easy_chat/interview_frame.png differ diff --git a/graphics/easy_chat/text.pal b/graphics/easy_chat/text.pal new file mode 100644 index 000000000..5c8eed0ba --- /dev/null +++ b/graphics/easy_chat/text.pal @@ -0,0 +1,9 @@ +JASC-PAL +0100 +6 +0 0 0 +255 255 255 +98 98 98 +222 213 222 +65 139 74 +230 230 230 diff --git a/graphics/easy_chat/title_text.pal b/graphics/easy_chat/title_text.pal new file mode 100644 index 000000000..c075c5ce1 --- /dev/null +++ b/graphics/easy_chat/title_text.pal @@ -0,0 +1,7 @@ +JASC-PAL +0100 +4 +0 0 0 +0 0 0 +57 205 255 +172 172 238 -- cgit v1.2.3 From 691c680908312c883362d0bbc2aad30e986b665a Mon Sep 17 00:00:00 2001 From: GriffinR Date: Thu, 1 Apr 2021 14:32:23 -0400 Subject: Delete unreferenced palette --- graphics/easy_chat/interview.pal | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 graphics/easy_chat/interview.pal (limited to 'graphics/easy_chat') diff --git a/graphics/easy_chat/interview.pal b/graphics/easy_chat/interview.pal deleted file mode 100644 index dfe91b5de..000000000 --- a/graphics/easy_chat/interview.pal +++ /dev/null @@ -1,19 +0,0 @@ -JASC-PAL -0100 -16 -255 255 148 -255 197 148 -238 139 90 -189 90 41 -255 213 213 -246 180 180 -197 131 131 -0 0 0 -0 0 0 -0 0 0 -0 0 0 -41 49 49 -98 98 98 -180 189 180 -222 213 222 -255 255 255 -- cgit v1.2.3