Skip to content

Commit

Permalink
Improve colors for image uploader
Browse files Browse the repository at this point in the history
  • Loading branch information
ljwagerfield committed Mar 3, 2023
1 parent 35f7d95 commit 38ff317
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion pages/dream.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,19 @@ const options = {
mimeTypes: ["image/jpeg", "image/png", "image/jpg"],
editor: { images: { crop: false } },
styles: {
colors: { primary: "#2563EB" },
colors: {
primary: "#2563EB", // Primary buttons & links
error: "#d23f4d", // Error messages
shade100: "#fff", // Standard text
shade200: "#fffe", // Secondary button text
shade300: "#fffd", // Secondary button text (hover)
shade400: "#fffc", // Welcome text
shade500: "#fff9", // Modal close button
shade600: "#fff7", // Border
shade700: "#fff2", // Progress indicator background
shade800: "#fff1", // File item background
shade900: "#ffff" // Various (draggable crop buttons, etc.)
},
},
};

Expand Down

0 comments on commit 38ff317

Please sign in to comment.