SYMBOL INDEX (52 symbols across 18 files) FILE: src/code/figma/effectStyles.ts type EffectStylesResult (line 3) | interface EffectStylesResult { function getEffectStyles (line 7) | async function getEffectStyles(): Promise { FILE: src/code/figma/helpers.ts function rgbToHex (line 1) | function rgbToHex(int: number): string { function makeHex (line 9) | function makeHex(r: number, g: number, b: number): string { function makeRgb (line 16) | function makeRgb(color: RGB | RGBA): { r: number; g: number; b: number; ... FILE: src/code/figma/nodeStyles.ts type NodeStylesResult (line 1) | interface NodeStylesResult { function getNodeStyles (line 5) | async function getNodeStyles(): Promise { FILE: src/code/figma/paintStyles.ts type ColorResult (line 3) | interface ColorResult { function getPaintStyles (line 8) | async function getPaintStyles(): Promise { FILE: src/code/figma/textStyles.ts type TextStylesResult (line 1) | interface TextStylesResult { function getTextStyles (line 6) | async function getTextStyles(): Promise { FILE: src/code/index.ts type Theme (line 6) | interface Theme { constant UI_WIDTH (line 36) | const UI_WIDTH = 420 constant UI_MIN_HEIGHT (line 37) | const UI_MIN_HEIGHT = 200 constant UI_MAX_HEIGHT (line 38) | const UI_MAX_HEIGHT = 600 FILE: src/shared/types.ts type ColorItem (line 1) | interface ColorItem { type FontSizeItem (line 6) | interface FontSizeItem { type FontFamilyItem (line 11) | interface FontFamilyItem { type ShadowItem (line 16) | interface ShadowItem { type BorderRadiusItem (line 21) | interface BorderRadiusItem { type Preferences (line 26) | interface Preferences { type ThemeState (line 33) | interface ThemeState { type CleanTheme (line 45) | type CleanTheme = { FILE: src/ui/components/Colors/Color.tsx type ColorProps (line 4) | interface ColorProps extends ColorItem { function Color (line 11) | function Color({ name: initialName, value: initialValue, index, onChange... FILE: src/ui/components/Colors/Gradient.tsx type GradientProps (line 1) | interface GradientProps { function Gradient (line 5) | function Gradient({ hex }: GradientProps) { FILE: src/ui/components/Colors/NewColor.tsx type NewColorProps (line 4) | interface NewColorProps { FILE: src/ui/components/Effects/BorderRadius.tsx type BorderRadiusProps (line 3) | interface BorderRadiusProps { FILE: src/ui/components/Effects/Shadow.tsx type ShadowProps (line 1) | interface ShadowProps { FILE: src/ui/components/Type/FontFamily.tsx type FontFamilyProps (line 1) | interface FontFamilyProps { FILE: src/ui/components/Type/FontSize.tsx type FontSizeProps (line 1) | interface FontSizeProps { FILE: src/ui/helpers/colorFormatter.ts function sRGBToLinear (line 2) | function sRGBToLinear(c: number): number { function parseRGB (line 8) | function parseRGB(input: string | number[]): [number, number, number, nu... function rgbToHsl (line 36) | function rgbToHsl([r, g, b]: [number, number, number]): [number, number,... function rgbToOklab (line 65) | function rgbToOklab([r, g, b]: [number, number, number]): [number, numbe... function oklabToOklch (line 85) | function oklabToOklch([L, a, b]: [number, number, number]): [number, num... function formatColor (line 93) | function formatColor(input: string | number[], format: string = 'hex'): ... FILE: src/ui/helpers/customHooks.ts function useInput (line 5) | function useInput(initialValue: string): [string, (e: ChangeEvent