7 lines
160 B
TypeScript
7 lines
160 B
TypeScript
import { Theme } from "styled-components";
|
|
|
|
export const defaultTheme: Theme = {
|
|
bgColor: "rgba(18, 18, 18, 0.8)",
|
|
bgGridColor: "rgba(51, 51, 51, 0.3)",
|
|
};
|