Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Travers Geoffray
Python Development Techdegree Graduate 26,967 PointsHow do I use my "color-brand" Sass variable on my h1 color element?
I'm having trouble with this challenge task. I rewatched the videos but I'm not seeing anything different than the code I'm using here. What am I missing?
$color-brand: #6a5acd
h1 {
color: $color-brand;
}
2 Answers

KRIS NIKOLAISEN
54,668 PointsThis line should end with a semicolon:
$color-brand: #6a5acd;

Travers Geoffray
Python Development Techdegree Graduate 26,967 PointsThank you Kris!