-
Notifications
You must be signed in to change notification settings - Fork 719
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(feature:account): Migrate account module to CMP
- Loading branch information
1 parent
eb0c64b
commit 633f78c
Showing
16 changed files
with
406 additions
and
334 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
feature/account/src/commonMain/composeResources/values/colors.xml
This file was deleted.
Oops, something went wrong.
31 changes: 31 additions & 0 deletions
31
feature/account/src/commonMain/kotlin/org/mifos/mobile/feature/account/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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* | ||
* Copyright 2025 Mifos Initiative | ||
* | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
* | ||
* See https://github.com/openMF/mobile-mobile/blob/master/LICENSE.md | ||
*/ | ||
package org.mifos.mobile.feature.account | ||
|
||
import androidx.compose.ui.graphics.Color | ||
|
||
val White = Color(0xFFFFFFFF) | ||
val Black = Color(0xFF000000) | ||
val Background = Color(0xFFEAEAEA) | ||
val DepositGreen = Color(0xFF14C416) | ||
val LightGreen = Color(0xFF8BF98A) | ||
val LightYellow = Color(0xFFF9AC06) | ||
val LightBlue = Color(0xFF87DBF9) | ||
val LightRed = Color(0xFFF9393C) | ||
val LightGrey = Color(0xFFD1D1D1) | ||
val TransactionDetailBg = Color(0x8AD3DA44) | ||
val TransactionDetailTableHeaderBg = Color(0x8ADA6134) | ||
val Blue = Color(0xFF003FFF) | ||
val Red = Color(0xFFFF0000) | ||
val LightBlack = Color(0xFF1C1C1C) | ||
val GrayDark = Color(0xBB666666) | ||
val Purple = Color(0xFFAA66CC) | ||
val RedLight = Color(0xFFFF4444) | ||
val GrayLight = Color(0x33999999) |
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
Oops, something went wrong.