Skip to content

Commit 40721ff

Browse files
Merge pull request #11 from happyfoxinc/development
Halloween Theme
2 parents 005eadc + 531a4b8 commit 40721ff

File tree

6 files changed

+163
-0
lines changed

6 files changed

+163
-0
lines changed

Themes/HSHalloweenTheme/README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
### Theme Details
2+
3+
- Name: HSHalloweenTheme
4+
- Creator: Tenmiles
5+
6+
This theme comes with the following files:
7+
- drawables
8+
- hs_halloween_leftchatbubble.xml
9+
- hs_halloween_rightchatbubble.xml
10+
- values
11+
- hs_custom_theme.xml
12+
- hs_halloween_colors.xml
13+
- screenshot
14+
- HSHalloweenTheme.png
15+
16+
### Screenshots
17+
![Halloween Theme Screenshot](screenshot/HSHalloweenTheme.png "Halloween Theme")
18+
19+
### Customizing the Action Bar
20+
21+
Ensure your *AppTheme* style found in **res/values/styles.xml** uses **Theme.AppCompat.Light.DarkActionBar** as its parent.
22+
23+
### Note
24+
To know more on how to use this theme file, refer to the Theming/Skinning section of the main README document located at the root of the project.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
3+
<corners android:radius="10px"/>
4+
<solid android:color="@color/hs_halloween_leftChatBubbleColor"/>
5+
<padding android:left="10dp" android:right="10dp" android:bottom="10dp" android:top="10dp"/>
6+
</shape>
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
3+
<corners android:radius="10px"/>
4+
<solid android:color="@color/hs_halloween_rightChatBubbleColor"/>
5+
<padding android:left="10dp" android:right="10dp" android:bottom="10dp" android:top="10dp"/>
6+
7+
</shape>
Loading
Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
<resources xmlns:android="http://schemas.android.com/apk/res/android">
2+
3+
<!-- Halloween Theme -->
4+
<!-- Developed by :- Anirudh -->
5+
<!-- Override the properties of the following styles to create custom Styles -->
6+
<!-- DO NOT DELETE ANY OF THE FOLLOWING STYLES AS THEY ARE USED IN HELPSTACK LAYOUTS -->
7+
8+
<!-- Style for background of all screens -->
9+
<style name="hs_backgroundStyle" parent="hs_background_defaultStyle">
10+
<item name="android:background">@color/hs_halloween_background_color</item>
11+
</style>
12+
13+
<!-- Articles and issues list -->
14+
<style name="hs_listViewStyle" parent="hs_listView_defaultStyle">
15+
<item name="android:background">@color/hs_halloween_listView_background_color</item>
16+
<item name="android:dividerHeight">0dip</item>
17+
</style>
18+
19+
<!-- Header background of main list view -->
20+
<style name="hs_listView_headerBackgroundStyle" parent="hs_listView_headerBackground_defaultStyle">
21+
<item name="android:background">@color/hs_halloween_header_background_color</item>
22+
</style>
23+
24+
<!-- Child view background of main list view -->
25+
<style name="hs_listView_childBackgroundStyle" parent="hs_listView_childBackground_defaultStyle">
26+
<item name="android:background">@color/hs_halloween_child_background_color</item>
27+
</style>
28+
29+
<!-- ListView header text -->
30+
<style name="hs_listView_headerTextStyle" parent="hs_listView_headerText_defaultStyle">
31+
<item name="android:textColor">@color/hs_halloween_header_textColor</item>
32+
</style>
33+
34+
<!-- ListView child text -->
35+
<style name="hs_listView_childTextStyle" parent="hs_listView_childText_defaultStyle">
36+
<item name="android:textColor">@color/hs_halloween_child_textColor</item>
37+
</style>
38+
39+
<!-- Chat screen - left chat bubble style -->
40+
<style name="hs_leftChatBubbleStyle" parent="hs_leftChatBubble_defaultStyle">
41+
<item name="android:background">@drawable/hs_halloween_left_chat_bubble</item>
42+
</style>
43+
44+
<!-- Chat screen - right chat bubble style -->
45+
<style name="hs_rightChatBubbleStyle" parent="hs_rightChatBubble_defaultStyle">
46+
<item name="android:background">@drawable/hs_halloween_right_chat_bubble</item>
47+
</style>
48+
49+
<!-- Chat screen message text style for left chat bubble -->
50+
<style name="hs_right_messageTextStyle" parent="@style/hs_rightmessageText_defaultStyle">
51+
<item name="android:textColor">@color/hs_halloween_right_messageTextColor</item>
52+
</style>
53+
54+
<!-- Chat screen more info text style - applied to the sender name and time -->
55+
<style name="hs_left_messageTextStyle" parent="@style/hs_leftmessageText_defaultStyle">
56+
<item name="android:textColor">@color/hs_halloween_left_messageTextColor</item>
57+
</style>
58+
59+
<!-- Chat screen more info text style - applied to the sender name and time -->
60+
<style name="hs_smallTextStyle" parent="@style/hs_smallText_defaultStyle">
61+
<item name="android:textColor">@color/hs_halloween_moreinfoTextColor</item>
62+
</style>
63+
64+
<!-- Button Style - applied for report issue button -->
65+
<style name="hs_buttonStyle" parent="hs_button_defaultStyle"></style>
66+
67+
<!-- Edit text Style in new user and new issue screen -->
68+
<style name="hs_editTextStyle" parent="hs_editText_defaultStyle"></style>
69+
70+
<!-- Edit text Style used in chat screen - add reply -->
71+
<style name="hs_messageEditTextStyle" parent="hs_editText_defaultStyle"></style>
72+
73+
<!-- DRAWABLES
74+
Defining the drawable icons used in the project, override the drawable to give your own custom icons
75+
76+
Attachment icon used in New Issue screen, and chat screen to show attachments -->
77+
<drawable name="hs_attachment_icon">@drawable/hs_attachment_img</drawable>
78+
79+
<!-- Search icon used in search menu -->
80+
<drawable name="hs_search_icon">@drawable/hs_search_img_light</drawable>
81+
82+
<!-- Disclosure icon used in main list view -->
83+
<drawable name="hs_disclosure_next">@drawable/hs_disclosure_img</drawable>
84+
85+
<!-- Add attachment icon used in issue detail screen - add reply -->
86+
<drawable name="hs_add_attachment">@drawable/hs_add_attachment_img</drawable>
87+
88+
</resources>
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<resources>
3+
<!-- Halloween Theme colors -->
4+
5+
<!-- Background color -->
6+
<color name="hs_halloween_background_color">#000000</color>
7+
8+
<!-- Header background and text color -->
9+
<color name="hs_halloween_header_background_color">#fc6600</color>
10+
<color name="hs_halloween_header_textColor">#ffffff</color>
11+
12+
<!-- Child background and text color -->
13+
<color name="hs_halloween_child_background_color">#212121</color>
14+
<color name="hs_halloween_child_textColor">#ffffff</color>
15+
16+
<!-- List view color properties -->
17+
<color name="hs_halloween_listView_background_color">#0000</color>
18+
<color name="hs_halloween_listView_divider_color">#0000</color>
19+
<color name="hs_halloween_listView_selector_color">#e1e1e1</color>
20+
21+
<!-- Issue details - left chat background and text color -->
22+
<color name="hs_halloween_leftChatBubbleColor">#3C3C3C</color>
23+
<color name="hs_halloween_left_messageTextColor">#ffffff</color>
24+
25+
<!-- Issue details - right chat background and text color -->
26+
<color name="hs_halloween_rightChatBubbleColor">#fc6600</color>
27+
<color name="hs_halloween_right_messageTextColor">#ffffff</color>
28+
29+
<!-- Issue details - sender name/time text color -->
30+
<color name="hs_halloween_moreinfoTextColor">#ffffff</color>
31+
32+
<!-- Button text color (Report issue button) -->
33+
<color name="hs_halloween_buttonTextcolor">#DE2527</color>
34+
35+
<!-- Edit text color -->
36+
<color name="hs_halloween_editTextcolor">#000000</color>
37+
38+
</resources>

0 commit comments

Comments
 (0)