-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from MoyeoRun/feature/default-style-setting
[#2] 디폴트 스타일 설정
- Loading branch information
Showing
5 changed files
with
38 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
app/src/main/java/com/moyerun/moyeorun_android/MoyeoRunApplication.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package com.moyerun.moyeorun_android | ||
|
||
import android.app.Application | ||
|
||
class MoyeoRunApplication: Application() { | ||
|
||
override fun onCreate() { | ||
super.onCreate() | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,17 @@ | ||
<resources xmlns:tools="http://schemas.android.com/tools"> | ||
<!-- Base application theme. --> | ||
<style name="Theme.MoyeoRunandroid" parent="Theme.MaterialComponents.DayNight.DarkActionBar"> | ||
<style name="Theme.MoyeoRunandroid" parent="Theme.MaterialComponents.Light.NoActionBar"> | ||
<!-- Primary brand color. --> | ||
<item name="colorPrimary">@color/purple_200</item> | ||
<item name="colorPrimaryVariant">@color/purple_700</item> | ||
<item name="colorOnPrimary">@color/black</item> | ||
<item name="colorPrimary">@color/main_blue</item> | ||
<item name="colorPrimaryVariant">@color/main_blue</item> | ||
<item name="colorOnPrimary">@color/main_white</item> | ||
<!-- Secondary brand color. --> | ||
<item name="colorSecondary">@color/teal_200</item> | ||
<item name="colorSecondaryVariant">@color/teal_200</item> | ||
<item name="colorOnSecondary">@color/black</item> | ||
<item name="colorSecondary">@color/main_light_blue</item> | ||
<item name="colorSecondaryVariant">@color/main_light_blue</item> | ||
<item name="colorOnSecondary">@color/main_black</item> | ||
<!-- Status bar color. --> | ||
<item name="android:statusBarColor" tools:targetApi="l">?attr/colorPrimaryVariant</item> | ||
<!-- Customize your theme here. --> | ||
<item name="android:colorBackground">@color/main_white</item> | ||
</style> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<color name="purple_200">#FFBB86FC</color> | ||
<color name="purple_500">#FF6200EE</color> | ||
<color name="purple_700">#FF3700B3</color> | ||
<color name="teal_200">#FF03DAC5</color> | ||
<color name="teal_700">#FF018786</color> | ||
<color name="black">#FF000000</color> | ||
<color name="white">#FFFFFFFF</color> | ||
<!-- brand colors --> | ||
<color name="main_black">#FF000000</color> | ||
<color name="main_white">#FFFFFFFF</color> | ||
<color name="main_blue">#1162FF</color> | ||
<color name="main_pink">#FC6BFF</color> | ||
<color name="main_sky">#36F3FF</color> | ||
<color name="main_green">#00F2B8</color> | ||
<color name="main_yellow">#FFDD64</color> | ||
<color name="main_light_blue">#EEF4FF</color> | ||
|
||
<!-- extra colors --> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,17 @@ | ||
<resources xmlns:tools="http://schemas.android.com/tools"> | ||
<!-- Base application theme. --> | ||
<style name="Theme.MoyeoRunandroid" parent="Theme.MaterialComponents.DayNight.DarkActionBar"> | ||
<style name="Theme.MoyeoRunandroid" parent="Theme.MaterialComponents.DayNight.NoActionBar"> | ||
<!-- Primary brand color. --> | ||
<item name="colorPrimary">@color/purple_500</item> | ||
<item name="colorPrimaryVariant">@color/purple_700</item> | ||
<item name="colorOnPrimary">@color/white</item> | ||
<item name="colorPrimary">@color/main_blue</item> | ||
<item name="colorPrimaryVariant">@color/main_blue</item> | ||
<item name="colorOnPrimary">@color/main_white</item> | ||
<!-- Secondary brand color. --> | ||
<item name="colorSecondary">@color/teal_200</item> | ||
<item name="colorSecondaryVariant">@color/teal_700</item> | ||
<item name="colorOnSecondary">@color/black</item> | ||
<item name="colorSecondary">@color/main_light_blue</item> | ||
<item name="colorSecondaryVariant">@color/main_light_blue</item> | ||
<item name="colorOnSecondary">@color/main_black</item> | ||
<!-- Status bar color. --> | ||
<item name="android:statusBarColor" tools:targetApi="l">?attr/colorPrimaryVariant</item> | ||
<!-- Customize your theme here. --> | ||
<item name="android:colorBackground">@color/main_white</item> | ||
</style> | ||
</resources> |