-
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.
- Loading branch information
Showing
3 changed files
with
37 additions
and
15 deletions.
There are no files selected for viewing
36 changes: 29 additions & 7 deletions
36
core/designsystem/src/main/java/com/goalpanzi/mission_mate/core/designsystem/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,13 +1,35 @@ | ||
package com.goalpanzi.mission_mate.core.designsystem.theme | ||
|
||
import androidx.compose.ui.graphics.Brush | ||
import androidx.compose.ui.graphics.Color | ||
|
||
val Purple80 = Color(0xFFD0BCFF) | ||
val PurpleGrey80 = Color(0xFFCCC2DC) | ||
val Pink80 = Color(0xFFEFB8C8) | ||
val ColorFFFFFFFF = Color(0xFFFFFFFF) | ||
val ColorFF000000 = Color(0xFF000000) | ||
val ColorFF404249 = Color(0xFF404249) | ||
val ColorFF4F505B = Color(0xFF4F505B) | ||
val ColorFF727483 = Color(0xFF727483) | ||
|
||
val Purple40 = Color(0xFF6650a4) | ||
val PurpleGrey40 = Color(0xFF625b71) | ||
val Pink40 = Color(0xFF7D5260) | ||
val ColorFFE5E5E5 = Color(0xFFE5E5E5) | ||
val ColorFFF5F6F9 = Color(0xFFF5F6F9) | ||
val Color80919293 = Color(0x80919293) | ||
val Color80B3B3B3 = Color(0x80B3B3B3) | ||
|
||
val Orange01 = Color(0xFFF5EDEA) | ||
val ColorFFED645F = Color(0xFFED645F) | ||
val ColorFFED6341 = Color(0xFFED6341) | ||
val ColorFFFBE5E5 = Color(0xFFFBE5E5) | ||
val ColorFFFBE5A4 = Color(0xFFFBE5A4) | ||
val ColorFFF2BD42 = Color(0xFFF2BD42) | ||
|
||
val ColorFFCAE59B = Color(0xFFCAE59B) | ||
val ColorFFC4E6FD = Color(0xFFC4E6FD) | ||
val ColorFFC3D7FC = Color(0xFFC3D7FC) | ||
val ColorFFF3D9B8 = Color(0xFFF3D9B8) | ||
|
||
val ColorFFF5EDEA = Color(0xFFF5EDEA) | ||
|
||
val ColorFFFF5F3C = Color(0xFFFF5F3C) | ||
val ColorFFFFAE50 = Color(0xFFFFAE50) | ||
|
||
val Gradient_FFFF5F3C_FFFFAE50 = Brush.verticalGradient( | ||
listOf(ColorFFFF5F3C, ColorFFFFAE50) | ||
) |
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