If you're using a high-end bluetooth headset on your Macbook Pro it's likely your mac is using an audio codec which favors battery efficiency over high quality. This results in a drastic degradation of sound, the SBC codec is the likely culprit, read more about it here.
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
// Copyright © 2019 Simon Strandgaard. All rights reserved. | |
import SwiftyBeaver | |
public let log = SwiftyBeaver.self | |
extension BaseDestination.LevelColor { | |
mutating func applyDefaultStyle() { | |
debug = "🏐 " | |
info = "🏐 " | |
verbose = "🏐 " |
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
import androidx.compose.ui.graphics.Color | |
// reds | |
val md_red_50 = Color(0xFFFFEBEE) | |
val md_red_100 = Color(0xFFFFCDD2) | |
val md_red_200 = Color(0xFFEF9A9A) | |
val md_red_300 = Color(0xFFE57373) | |
val md_red_400 = Color(0xFFEF5350) | |
val md_red_500 = Color(0xFFF44336) | |
val md_red_600 = Color(0xFFE53935) |
OlderNewer