// // Simple variable tests for Fawkss. // --- TEST --- $width: 100%; $__height1: 10px; $12color: black; .test-element { color: $12color; height: $__height1; width: $width; } --- EXPECTED --- .test-element { color: black; height: 10px; width: 100%; } --- END ---