-
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.
Chore
: Exercise Overview adjustments and PR cleanup (#100)
Co-authored-by: Martin Felber <[email protected]>
- Loading branch information
1 parent
9b6c193
commit ae68b6b
Showing
21 changed files
with
536 additions
and
582 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
13 changes: 13 additions & 0 deletions
13
...in/de/tum/informatics/www1/artemis/native_app/core/ui/material/colors/DifficultyColors.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,13 @@ | ||
package de.tum.informatics.www1.artemis.native_app.core.ui.material.colors | ||
|
||
import androidx.compose.runtime.Composable | ||
import androidx.compose.ui.graphics.Color | ||
|
||
object DifficultyColors { | ||
val hard: Color | ||
@Composable get() = Color(0xffdc3545) | ||
val medium: Color | ||
@Composable get() = Color(0xffffc107) | ||
val easy: Color | ||
@Composable get() = Color(0xff28a745) | ||
} |
14 changes: 14 additions & 0 deletions
14
...temis/native_app/core/ui/material/colors/ParticipationNotPossibleInfoMessageCardColors.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,14 @@ | ||
package de.tum.informatics.www1.artemis.native_app.core.ui.material.colors | ||
|
||
import androidx.compose.foundation.isSystemInDarkTheme | ||
import androidx.compose.runtime.Composable | ||
import androidx.compose.ui.graphics.Color | ||
|
||
object ParticipationNotPossibleInfoMessageCardColors { | ||
val background: Color | ||
@Composable get() = if(isSystemInDarkTheme()) Color(0xFF062A30) else Color(0xFFD1ECF1) | ||
val border: Color | ||
@Composable get() = if(isSystemInDarkTheme()) Color(0xFF148EA1) else Color(0xFFA2DAE3) | ||
val text: Color | ||
@Composable get() = if(isSystemInDarkTheme()) Color(0xFF36CEE6) else Color(0xFF09414A) | ||
} |
2 changes: 1 addition & 1 deletion
2
...ative_app/core/ui/material/text_colors.kt → ...pp/core/ui/material/colors/text_colors.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
11 changes: 0 additions & 11 deletions
11
...n/kotlin/de/tum/informatics/www1/artemis/native_app/core/ui/material/difficulty_colors.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
Oops, something went wrong.