diff --git a/src/scss/functions/_color.scss b/src/scss/functions/_color.scss new file mode 100644 index 0000000..c1a19f1 --- /dev/null +++ b/src/scss/functions/_color.scss @@ -0,0 +1,40 @@ +// ============================================================================ +// Poster +// ============================================================================ + +//// +/// +/// Color Variables Module +/// =========================================================================== +/// +/// These colors are used for visual guides such as grid overlays, baselines, +/// and alignment guides. The colors are defined with varying levels of opacity +/// to ensure they are visible yet non-intrusive on the design. +/// +/// @group Color +/// @author Scape Agency +/// @link https://unit.gl +/// @since 0.1.0 initial release +/// @todo None +/// @access public +/// +//// + + +// ============================================================================ +// Use +// ============================================================================ + + +// ============================================================================ +// Functions +// ============================================================================ + + +/// +/// Function to Retrieve Guide Colors (Optional for Flexibility) +/// --------------------------------------------------------------------------- +/// +@function guide_color($name) { + @return map-get($guide_colors, $name); +}