diff options
| author | Martin Haug <mhaug@live.de> | 2022-02-08 21:12:09 +0100 |
|---|---|---|
| committer | Martin Haug <mhaug@live.de> | 2022-02-08 21:12:09 +0100 |
| commit | fe70db1f4ce078f7b41c163a1c0ead31fd04850a (patch) | |
| tree | 0f85390a89a05dc763cbc2eb6c611c48877c08cd /src/library/table.rs | |
| parent | 62cf2a19d7207118f115c05c8f7c453d6db77a0a (diff) | |
New color stuff
- CMYK function
- More default colors
- Interpret RGB values as sRGB
Diffstat (limited to 'src/library/table.rs')
| -rw-r--r-- | src/library/table.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/table.rs b/src/library/table.rs index d7aa61db..b0f0fbf5 100644 --- a/src/library/table.rs +++ b/src/library/table.rs @@ -21,7 +21,7 @@ impl TableNode { /// The secondary cell fill color. pub const SECONDARY: Option<Paint> = None; /// How the stroke the cells. - pub const STROKE: Option<Paint> = Some(RgbaColor::BLACK.into()); + pub const STROKE: Option<Paint> = Some(Color::BLACK.into()); /// The stroke's thickness. pub const THICKNESS: Length = Length::pt(1.0); /// How much to pad the cells's content. |
