Current section
Files
Jump to
Current section
Files
src/catppuccin.erl
-module(catppuccin).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch]).
-export_type([rgb/0, hsl/0, color/0]).
-type rgb() :: {rgb, integer(), integer(), integer()}.
-type hsl() :: {hsl, integer(), float(), float()}.
-type color() :: {color, binary(), rgb(), hsl()}.