Global scss variables in react-create-app
Use partials when importing parts into index.scss
@import 'assets/styles/colors';
@import 'assets/styles/links';
@import 'assets/styles/basics';
The filenames should be
_colors.scss
_links.scss
_basics.scss
You can read more about this in the SASS docs under the Partial section.