8 lines
252 B
Swift
8 lines
252 B
Swift
// NOTE: These don't always work as expected with tailwind they generally
|
|
// need to be in the class itself, but here for reference of the primary
|
|
// colors.
|
|
enum Colors {
|
|
static let yellow = "yellow-300"
|
|
static let blue = "blue-500"
|
|
}
|