feat: Updates styles

This commit is contained in:
2025-02-26 22:13:38 -05:00
parent a15e54e0e4
commit 36e00cd007
11 changed files with 67 additions and 43 deletions

View File

@@ -32,12 +32,16 @@ public enum Color {
}
public enum BorderColor: Sendable {
case blue
case darkGray
case darkYellow
case gray
case yellow
var color: String {
switch self {
case .blue: return "border-blue-500"
case .darkGray: return "border-gray-400"
case .darkYellow: return "border-yellow-800"
case .gray: return "border-gray-300"
case .yellow: return "border-yellow-300"