This file contains hidden or 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
package dev.ayanw.sail.core | |
import dev.ayanw.sail.core.types.DiscordUser | |
import dev.ayanw.sail.core.types.IncomingPayload | |
import dev.ayanw.sail.core.types.InteractionCreatePayload | |
import dev.ayanw.sail.core.types.SlashCommand | |
import io.ktor.client.HttpClient | |
import io.ktor.client.engine.cio.CIO | |
import io.ktor.client.plugins.contentnegotiation.ContentNegotiation | |
import io.ktor.client.plugins.websocket.DefaultClientWebSocketSession |
This file contains hidden or 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
package dev.ayanw.focusflow.ui.theme | |
import androidx.compose.ui.graphics.Color | |
object TwColors { | |
val black = Color(0xFF000000) | |
val white = Color(0xFFFFFFFF) | |
val Slate_50 = Color(0xFFF8FAFC) | |
val Slate_100 = Color(0xFFF1F5F9) | |
val Slate_200 = Color(0xFFE2E8F0) |
This file contains hidden or 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
/** | |
* @name Tokyo Night | |
* @description Discord Port of Visual Studio Code Theme | |
* @author Ashtrath | |
* @version 2.0.2 | |
* @authorId 2354831939099688962 | |
*/ | |
/* DONT TOUCH THIS!!! */ | |
@import url("https://dyzean.github.io/Tokyo-Night/main.css"); |