You can make things private in SASS by prefixing with - or _.
This includes making variables private, which isn't documented well.
$public: red; $-private: blue;
When an underscore is used in front of a file, it's known as a 'partial'.
https://sass-lang.com/documentation/at-rules/use/#private-members https://sass-lang.com/guide/#partials