import { createGlobalStyle } from 'styled-components'; const GlobalStyle = createGlobalStyle` *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } html, body { height: 100%; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; background-color: #0D1117; color: #E6EDF3; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } a { color: inherit; text-decoration: none; } ::-webkit-scrollbar { width: 6px; height: 6px; } ::-webkit-scrollbar-track { background: #0D1117; } ::-webkit-scrollbar-thumb { background: rgba(240, 246, 252, 0.1); border-radius: 3px; } ::-webkit-scrollbar-thumb:hover { background: rgba(240, 246, 252, 0.2); } `; export default GlobalStyle;