Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ import com.emergetools.hackernews.userStorage
import com.emergetools.hackernews.webClient
import kotlinx.serialization.Serializable

/**
* Destinations related to the comments feature.
*/
sealed interface CommentsDestinations {
@Serializable
data class Comments(val storyId: Long) : CommentsDestinations
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package com.emergetools.hackernews.ui.theme

import androidx.compose.ui.graphics.Color

val HackerOrange = Color(0xFFF59342)
val HackerOrange = Color(0xFF42F593)
val HackerOrangeLight = Color(0xFFFCE0C9)
val HackerRed = Color(0xFFEF476F)
val HackerBlue = Color(0xFF118AB2)
Expand Down