import * as styledComponents from "styled-components"; import { Colors, Color } from "./Colors"; import * as FontFamilies from "./Fonts"; import _ from "lodash"; export type FontFamily = (typeof FontFamilies)[keyof typeof FontFamilies]; const { default: styled, css, keyframes, createGlobalStyle, ThemeProvider, } = styledComponents as styledComponents.ThemedStyledComponentsModule; export type ThemeBorder = { thickness: number; style: "dashed" | "solid"; color: Color; }; type PropertyPaneTheme = { width: number; height: number; }; export type Theme = { radii: Array; fontSizes: Array; drawerWidth: string; spaces: Array; fontWeights: Array; colors: Record; lineHeights: Array; fonts: Array; borders: ThemeBorder[]; propertyPane: PropertyPaneTheme; headerHeight: string; sidebarWidth: string; }; export const getColorWithOpacity = (color: Color, opacity: number) => { color = color.slice(1); const val = parseInt(color, 16); const r = (val >> 16) & 255; const g = (val >> 8) & 255; const b = val & 255; return `rgba(${r},${g},${b},${opacity})`; }; export const getBorderCSSShorthand = (border?: ThemeBorder) : string => { let values : string[] = [] _.forIn(border, (value, key) => { values.push(key === 'thickness' ? value + "px" : value) }) return values.join(" ") }; export const theme: Theme = { radii: [0, 4, 8, 10, 20, 50], fontSizes: [0, 10, 12, 14, 16, 18, 24, 28, 32, 48, 64], spaces: [0, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 30], fontWeights: [0, 400, 500, 700], propertyPane: { width: 250, height: 600, }, drawerWidth: "80%", colors: { primary: Colors.GREEN, primaryDarker: Colors.JUNGLE_GREEN, primaryDarkest: Colors.JUNGLE_GREEN_DARKER, secondary: Colors.GEYSER_LIGHT, secondaryDarker: Colors.CONCRETE, secondaryDarkest: Colors.MERCURY, error: Colors.RED, info: Colors.SLATE_GRAY, hover: Colors.POLAR, inputInactiveBorders: Colors.MYSTIC, inputInactiveBG: Colors.AQUA_HAZE, textDefault: Colors.BLACK_PEARL, textOnDarkBG: Colors.WHITE, textAnchor: Colors.PURPLE, border: Colors.GEYSER, paneCard: Colors.SHARK, paneInputBG: Colors.SHARK, paneBG: Colors.OUTER_SPACE, paneText: Colors.GRAY_CHATEAU, paneSectionLabel: Colors.CADET_BLUE, navBG: Colors.DEEP_SPACE, grid: Colors.GEYSER, containerBorder: Colors.FRENCH_PASS, menuButtonBGInactive: Colors.JUNGLE_MIST, menuIconColorInactive: Colors.OXFORD_BLUE, }, lineHeights: [0, 14, 18, 22, 24, 28, 36, 48, 64, 80], fonts: [FontFamilies.DMSans, FontFamilies.AppsmithWidget], borders: [ { thickness: 1, style: "dashed", color: Colors.FRENCH_PASS, }, { thickness: 2, style: "solid", color: Colors.FRENCH_PASS, }, { thickness: 1, style: "solid", color: Colors.GEYSER_LIGHT, }, ], sidebarWidth: "350px", headerHeight: "50px", }; export { css, createGlobalStyle, keyframes, ThemeProvider }; export default styled;