-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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); | ||
} |