mirror of
https://github.com/catppuccin/nim.git
synced 2024-11-10 03:43:14 -06:00
10 lines
179 B
Nim
10 lines
179 B
Nim
|
import unittest
|
||
|
|
||
|
import catppuccin
|
||
|
|
||
|
test "color":
|
||
|
check mocha.rosewater == ColorRGB(r: 245, g: 224, b: 220)
|
||
|
|
||
|
test "convert":
|
||
|
check mocha.rosewater.color().toHex() == "F5E0DC"
|