mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-16 06:38:03 +08:00
* fix noise pattern parameter issue * removed the commented out line * Fix outline mode stroke width not consistent * add non scaling stroke option * Fix backward compatibility * Clean Debug Message * clean code * clean code 2 * Add vello outline support * Code review --------- Co-authored-by: Keavon Chambers <keavon@keavon.com>
10 lines
261 B
Rust
10 lines
261 B
Rust
use crate::raster::Color;
|
|
|
|
// RENDERING
|
|
pub const LAYER_OUTLINE_STROKE_COLOR: Color = Color::BLACK;
|
|
pub const LAYER_OUTLINE_STROKE_WEIGHT: f64 = 0.5;
|
|
|
|
// Fonts
|
|
pub const DEFAULT_FONT_FAMILY: &str = "Cabin";
|
|
pub const DEFAULT_FONT_STYLE: &str = "Regular (400)";
|