add openhack files

This commit is contained in:
Ryan Peters
2022-11-03 16:41:13 -04:00
commit b2c9f7e29f
920 changed files with 118861 additions and 0 deletions

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="login_facebook">Login with Facebook</string>
<string name="login_twitter">Login with Twitter</string>
<string name="login_microsoft">Login with Microsoft</string>
</resources>

View File

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="primary">#0087d2</color>
<color name="primary_transparent">#990087d2</color>
<color name="primary_dark">#005e93</color>
<color name="primary_light">#CFD8DC</color>
<color name="accent">#0087d2</color>
<color name="primary_text">#212121</color>
<color name="secondary_text">#727272</color>
<color name="icons">#FFFFFF</color>
<color name="divider">#B6B6B6</color>
<color name="activated_color">#E8E8E8</color>
<color name="window_background">#FFF5F5F5</color>
<color name="rating_accent">#0087d2</color>
<color name="recording_accent">#F65159</color>
<color name="time_accent">#db83d3</color>
<color name="stat_accent">#0087d2</color>
<color name="stat_display">#000000</color>
<!--Buttons-->
<color name="button_facebook">#282E8C</color>
<color name="button_twitter">#1B92F2</color>
<color name="button_microsoft">#376897</color>
</resources>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?>
<resources>
<dimen name="keyline_margin">16dp</dimen>
<dimen name="keyline_content_start">72dp</dimen>
<dimen name="keyline_content_end_with_fab">32dp</dimen>
</resources>

View File

@ -0,0 +1,120 @@
<?xml version="1.0" encoding="utf-8" ?>
<resources>
<style name="MyThemeDark" parent="MyThemeDark.Base">
</style>
<!-- Base theme applied no matter what API -->
<style name="MyThemeDark.Base" parent="Theme.AppCompat.NoActionBar">
<!-- Set theme colors from http://www.google.com/design/spec/style/color.html#color-color-palette-->
<!-- colorPrimary is used for the default action bar background -->
<item name="colorPrimary">@color/primary</item>
<!-- colorPrimaryDark is used for the status bar -->
<item name="colorPrimaryDark">@color/primary_dark</item>
<!-- colorAccent is used as the default value for colorControlActivated
which is used to tint widgets -->
<item name="colorAccent">@color/accent</item>
<item name="alertDialogTheme">@style/MyDialog</item>
<!-- You can also set colorControlNormal, colorControlActivated
colorControlHighlight and colorSwitchThumbNormal. -->
<!-- Option to hide the drop shadow here
<item name="actionBarStyle">@style/MyThemeDark.ActionBar</item>
<item name="android:windowContentOverlay">@null</item>
-->
<item name="preferenceTheme">@style/PreferenceThemeOverlay</item>
</style>
<style name="MyDialog" parent="Base.Theme.AppCompat.Light.Dialog.Alert">
<item name="colorAccent">@color/accent</item>
</style>
<style name="MyThemeDark.ActionBar" parent="style/Widget.AppCompat.ActionBar.Solid">
<!-- remove shadow below action bar -->
<!-- <item name="android:elevation">0dp</item> -->
<!-- Support library compatibility -->
<item name="elevation">0dp</item>
</style>
<style name="MyTheme.PopupTheme">
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowCloseOnTouchOutside">true</item>
</style>
<style name="MyTheme" parent="MyTheme.Base">
</style>
<!-- Base theme applied no matter what API -->
<style name="MyTheme.Base" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Set theme colors from http://www.google.com/design/spec/style/color.html#color-color-palette-->
<!-- colorPrimary is used for the default action bar background -->
<item name="colorPrimary">@color/primary</item>
<!-- colorPrimaryDark is used for the status bar -->
<item name="colorPrimaryDark">@color/primary_dark</item>
<!-- colorAccent is used as the default value for colorControlActivated
which is used to tint widgets -->
<item name="colorAccent">@color/accent</item>
<!-- You can also set colorControlNormal, colorControlActivated
colorControlHighlight and colorSwitchThumbNormal. -->
<item name="android:windowBackground">@color/window_background</item>
<!-- Option to hide the drop shadow here
<item name="actionBarStyle">@style/MyTheme.ActionBar</item>
<item name="android:windowContentOverlay">@null</item>
-->
<item name="preferenceTheme">@style/PreferenceThemeOverlay</item>
</style>
<style name="MyTheme.ActionBar" parent="style/Widget.AppCompat.Light.ActionBar.Solid">
<!-- remove shadow below action bar -->
<!-- <item name="android:elevation">0dp</item> -->
<!-- Support library compatibility -->
<item name="elevation">0dp</item>
</style>
<style name="SplashTheme" parent="SplashTheme.Base">
<!-- Set theme colors from http://www.google.com/design/spec/style/color.html#color-color-palette-->
<!-- colorPrimary is used for the default action bar background -->
<item name="colorPrimary">@color/primary</item>
<!-- colorPrimaryDark is used for the status bar -->
<item name="colorPrimaryDark">@color/primary_dark</item>
<!-- colorAccent is used as the default value for colorControlActivated
which is used to tint widgets -->
<item name="colorAccent">@color/accent</item>
</style>
<style name="SplashTheme.Base" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:windowBackground">@drawable/background_splash</item>
</style>
<style name="Widget.CardContentSummary" parent="android:Widget">
<item name="android:paddingLeft">8dp</item>
<item name="android:paddingRight">8dp</item>
<item name="android:paddingTop">8dp</item>
<item name="android:paddingBottom">8dp</item>
<item name="android:orientation">vertical</item>
</style>
<style name="Widget.CardContent" parent="android:Widget">
<item name="android:paddingLeft">16dp</item>
<item name="android:paddingRight">16dp</item>
<item name="android:paddingTop">16dp</item>
<item name="android:paddingBottom">16dp</item>
<item name="android:orientation">vertical</item>
</style>
<style name="TwitterButton" parent="@android:style/Widget.Button">
<item name="colorButtonNormal">@color/button_twitter</item>
</style>
<style name="FacebookButton" parent="@android:style/Widget.Button">
<item name="colorButtonNormal">@color/button_facebook</item>
</style>
<style name="MicrosoftButton" parent="@android:style/Widget.Button">
<item name="colorButtonNormal">@color/button_microsoft</item>
</style>
<style name="PrimaryButton" parent="@android:style/Widget.Button">
<item name="colorButtonNormal">@color/primary</item>
</style>
</resources>