gitextract_7qffhun8/ ├── .editorconfig ├── .github/ │ └── ISSUE_TEMPLATE/ │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── Plan.md ├── README.md ├── manifest.json ├── package.json ├── src/ │ ├── code/ │ │ ├── figma/ │ │ │ ├── effectStyles.ts │ │ │ ├── helpers.ts │ │ │ ├── nodeStyles.ts │ │ │ ├── paintStyles.ts │ │ │ └── textStyles.ts │ │ └── index.ts │ ├── shared/ │ │ └── types.ts │ └── ui/ │ ├── App.tsx │ ├── components/ │ │ ├── Colors/ │ │ │ ├── Color.tsx │ │ │ ├── Colors.tsx │ │ │ ├── Gradient.tsx │ │ │ └── NewColor.tsx │ │ ├── Effects/ │ │ │ ├── BorderRadius.tsx │ │ │ ├── Effects.tsx │ │ │ └── Shadow.tsx │ │ ├── Export/ │ │ │ ├── Export.tsx │ │ │ └── Info.tsx │ │ ├── Footer/ │ │ │ └── Footer.tsx │ │ ├── Preferences/ │ │ │ └── Preferences.tsx │ │ └── Type/ │ │ ├── FontFamilies.tsx │ │ ├── FontFamily.tsx │ │ ├── FontSize.tsx │ │ ├── FontSizes.tsx │ │ └── Type.tsx │ ├── helpers/ │ │ ├── colorFormatter.ts │ │ ├── customHooks.ts │ │ ├── helpers.ts │ │ └── randomMessages.ts │ ├── icons/ │ │ ├── Github.tsx │ │ └── Tailwind.tsx │ ├── main.tsx │ ├── store/ │ │ └── themeStore.ts │ └── styles/ │ └── app.css ├── tsconfig.json ├── ui.html ├── vite.config.code.ts └── vite.config.ts