Skip to content

Instantly share code, notes, and snippets.

@Scrini
Scrini / ReactStyleOrganization
Last active July 4, 2019 12:24
How organize your files of style
// styles/colors.js
const colors = {
primary: '#333333'
};
export default colors;
// styles/fonts.js
@Scrini
Scrini / DarkTheme
Last active July 4, 2019 11:55
Theme of dark vs code
{
background: #1E1E1E,
barraSuperior: #333333,
barraLateral: #2D2D2D,
espacoLateral: #252526,
topicoEspacoLateral: #383838,
itemSelecionadoEspacoLateral: #094771,
{
"printWidth": 120,
"tabWidth": 4,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"arrowParens": "avoid"
}