-
Notifications
You must be signed in to change notification settings - Fork 4
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 #159 from eoeo0326/feat/compose_theme
Compose Theme 통일
- Loading branch information
Showing
11 changed files
with
113 additions
and
221 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
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
30 changes: 0 additions & 30 deletions
30
app/src/main/java/com/boostcamp/dailyfilm/presentation/searchfilm/ui/theme/Color.kt
This file was deleted.
Oops, something went wrong.
64 changes: 0 additions & 64 deletions
64
app/src/main/java/com/boostcamp/dailyfilm/presentation/searchfilm/ui/theme/Theme.kt
This file was deleted.
Oops, something went wrong.
34 changes: 0 additions & 34 deletions
34
app/src/main/java/com/boostcamp/dailyfilm/presentation/searchfilm/ui/theme/Type.kt
This file was deleted.
Oops, something went wrong.
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
39 changes: 25 additions & 14 deletions
39
app/src/main/java/com/boostcamp/dailyfilm/presentation/ui/theme/Color.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 |
---|---|---|
@@ -1,19 +1,30 @@ | ||
package com.example.composeapplication.ui.theme | ||
package com.boostcamp.dailyfilm.presentation.ui.theme | ||
|
||
import androidx.compose.ui.graphics.Color | ||
|
||
val primary = Color(0xFF202022) | ||
val onPrimary = Color(0xFFFFFFFF) | ||
val surface = Color(0xFFFFFFFF) | ||
val onSurface = Color(0xFF202022) | ||
|
||
val black = Color.Black | ||
val blackBlur = Color(0x4D000000) | ||
val white = Color.White | ||
val lightBlack = Color(0xFF202022) | ||
val lightGray = Color(0xFFE1E1E1) | ||
|
||
// nights | ||
val darkPrimary = Color(0xFFFFFFFF) | ||
val darkOnPrimary = Color(0xFFFFFFFF) | ||
val darkSurface = Color(0xFF202022) | ||
val darkOnSurface = Color(0xFFFFFFFF) | ||
val primary = lightBlack | ||
val primaryVariant = white | ||
val background = white | ||
val surface = white | ||
val error = Color(0xFFB00020) | ||
val onPrimary = black | ||
val onBackground = black | ||
val onSurface = black | ||
val onError = white | ||
|
||
val white = Color(0xFFFFFFFF) | ||
val lightBlack = Color(0xFF202022) | ||
val black = Color(0xFF000000) | ||
// darkTheme | ||
val darkPrimary = white | ||
val darkPrimaryVariant = lightBlack | ||
val darkBackground = lightBlack | ||
val darkSurface = Color(0xFF121212) | ||
val darkError = Color(0xFFCF6679) | ||
val darkOnPrimary = white | ||
val darkOnBackground = white | ||
val darkOnSurface = white | ||
val darkOnError = black |
11 changes: 0 additions & 11 deletions
11
app/src/main/java/com/boostcamp/dailyfilm/presentation/ui/theme/Shape.kt
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.