Last active
November 1, 2022 21:58
-
-
Save vitormateusalmeida/48bcd2471b37473e672e8e726ea31e42 to your computer and use it in GitHub Desktop.
NLW Copa
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { extendTheme } from 'native-base'; | |
export const THEME = extendTheme({ | |
colors: { | |
gray: { | |
950: '#09090A', | |
900: '#121214', | |
800: '#202024', | |
600: '#323238', | |
300: '#8D8D99', | |
200: '#C4C4CC', | |
}, | |
green: { | |
500: '#047C3F' | |
}, | |
yellow: { | |
500: '#F7DD43', | |
600: '#BBA317', | |
}, | |
red: { | |
500: '#DB4437', | |
}, | |
white: '#FFFFFF' | |
}, | |
fonts: { | |
heading: 'Roboto_700Bold', | |
body: 'Roboto_400Regular', | |
medium: 'Roboto_500Medium' | |
}, | |
fontSizes: { | |
xs: 12, | |
sm: 14, | |
md: 16, | |
lg: 20, | |
xl: 24, | |
}, | |
sizes: { | |
14: 56 | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"emmet.syntaxProfiles" : { | |
"javascript" : "jsx" | |
}, | |
"workbench.startupEditor" : "newUntitledFile", | |
"editor.fontSize" : 16, | |
"javascript.suggest.autoImports" : true, | |
"javascript.updateImportsOnFileMove.enabled" : "always", | |
"editor.rulers" : [ | |
80, | |
120 | |
], | |
"extensions.ignoreRecommendations" : true, | |
"typescript.tsserver.log" : "off", | |
"files.associations" : { | |
".sequelizerc" : "javascript", | |
".stylelintrc" : "json", | |
"*.tsx" : "typescriptreact", | |
".env.*" : "dotenv", | |
".prettierrc" : "json" | |
}, | |
"screencastMode.onlyKeyboardShortcuts" : true, | |
"cSpell.userWords" : [ | |
"chakra", | |
"IUGU", | |
"middlewares", | |
"mixpanel", | |
"Onboarded", | |
"prefetch", | |
"rocketseat", | |
"upsert" | |
], | |
"editor.parameterHints.enabled" : false, | |
"editor.renderLineHighlight" : "gutter", | |
"cSpell.language" : "en,pt", | |
"editor.lineHeight" : 26, | |
"material-icon-theme.languages.associations" : { | |
"dotenv" : "tune" | |
}, | |
"typescript.updateImportsOnFileMove.enabled" : "never", | |
"workbench.colorTheme" : "Omni", | |
"material-icon-theme.files.associations" : { | |
"tsconfig.json" : "tune", | |
"*.webpack.js" : "webpack", | |
"*.proto" : "3d", | |
"ormconfig.json" : "database" | |
}, | |
"material-icon-theme.activeIconPack" : "nest", | |
"editor.suggestSelection" : "first", | |
"explorer.confirmDelete" : false, | |
"gitlens.codeLens.recentChange.enabled" : false, | |
"terminal.integrated.showExitAlert" : false, | |
"[prisma]" : { | |
"editor.formatOnSave" : true | |
}, | |
"typescript.suggest.autoImports" : true, | |
"terminal.integrated.env.osx" : { | |
"FIG_NEW_SESSION": "1" | |
}, | |
"workbench.editor.labelFormat" : "short", | |
"editor.fontLigatures" : true, | |
"emmet.includeLanguages" : { | |
"javascript" : "javascriptreact" | |
}, | |
"liveshare.featureSet" : "insiders", | |
"material-icon-theme.folders.associations" : { | |
"adapters" : "contract", | |
"grpc" : "pipe", | |
"kube" : "kubernetes", | |
"main" : "lib", | |
"websockets" : "pipe", | |
"implementations" : "core", | |
"protos" : "pipe", | |
"entities" : "class", | |
"kafka" : "pipe", | |
"use-cases" : "functions", | |
"migrations" : "tools", | |
"schemas" : "class", | |
"useCases" : "functions", | |
"eslint-config" : "tools", | |
"typeorm" : "database", | |
"_shared" : "shared", | |
"mappers" : "meta", | |
"fakes" : "mock", | |
"modules" : "components", | |
"subscribers" : "messages", | |
"domain" : "class", | |
"protocols" : "contract", | |
"infra" : "app", | |
"view-models" : "views", | |
"presentation" : "template", | |
"dtos" : "typescript", | |
"http" : "container", | |
"providers" : "include", | |
"factories" : "class", | |
"repositories" : "mappings" | |
}, | |
"cSpell.enableFiletypes" : [ | |
"!asciidoc", | |
"!c", | |
"!cpp", | |
"!csharp", | |
"!go", | |
"!handlebars", | |
"!haskell", | |
"!jade", | |
"!java", | |
"!latex", | |
"!php", | |
"!pug", | |
"!python", | |
"!restructuredtext", | |
"!rust", | |
"!scala", | |
"!scss" | |
], | |
"editor.acceptSuggestionOnCommitCharacter" : false, | |
"explorer.compactFolders" : false, | |
"git.enableSmartCommit" : true, | |
"editor.accessibilitySupport" : "off", | |
"explorer.confirmDragAndDrop" : false, | |
"terminal.integrated.fontSize" : 14, | |
"editor.codeActionsOnSave" : { | |
"source.fixAll.eslint" : true, | |
// "source.organizeImports": true | |
}, | |
"editor.semanticHighlighting.enabled" : false, | |
"breadcrumbs.enabled" : true, | |
"workbench.productIconTheme" : "fluent-icons", | |
"editor.fontFamily" : "JetBrains Mono", | |
"gitlens.codeLens.authors.enabled" : false, | |
"editor.tabSize" : 2, | |
"security.workspace.trust.untrustedFiles" : "newWindow", | |
"files.exclude" : { | |
"**\/CVS" : true, | |
"**\/.DS_Store" : true, | |
"**\/.hg" : true, | |
"**\/.svn" : true, | |
"**\/.git" : true | |
}, | |
"tabnine.experimentalAutoImports" : true, | |
"gitlens.codeLens.enabled": false, | |
"workbench.iconTheme": "material-icon-theme" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment