|
11 | 11 | extend: { |
12 | 12 | colors: { |
13 | 13 | 'light-blue': '#8ecae6', |
14 | | - blue: '#219ebc', |
| 14 | + blue: '#4a6fa5', |
| 15 | + primary: '#4a6fa5', |
| 16 | + 'primary-dark': '#3a5683', |
| 17 | + 'primary-light': '#c5d5e5', |
| 18 | + secondary: '#8fb8de', |
| 19 | + accent: '#63c0f5', |
15 | 20 | purple: '#a78bfa', |
16 | 21 | 'light-purple': '#c4b5fd' |
17 | 22 | } |
|
21 | 26 | </script> |
22 | 27 | <style> |
23 | 28 | .gradient-bg { |
24 | | - background: linear-gradient(135deg, #8ecae6 0%, #a78bfa 100%); |
| 29 | + background: linear-gradient( |
| 30 | + 135deg, |
| 31 | + var(--primary-light, #c5d5e5) 0%, |
| 32 | + var(--primary, #4a6fa5) 100% |
| 33 | + ); |
25 | 34 | } |
26 | 35 | .paste-container { |
27 | 36 | transition: all 0.3s ease; |
|
31 | 40 | box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), |
32 | 41 | 0 4px 6px -2px rgba(0, 0, 0, 0.05); |
33 | 42 | } |
34 | | - /* Add navbar styling */ |
35 | | - nav { |
| 43 | + /* Remove old navbar styling */ |
| 44 | + /* nav { |
36 | 45 | background-color: #219ebc; |
37 | 46 | color: white; |
38 | 47 | } |
39 | 48 | nav a { |
40 | 49 | color: white; |
41 | | - } |
| 50 | + } */ |
42 | 51 | </style> |
43 | 52 | </head> |
44 | 53 | <body class="bg-gray-50 min-h-screen"> |
|
79 | 88 | return html` |
80 | 89 | <div class="paste-container bg-white rounded-lg shadow-md p-4 mb-4"> |
81 | 90 | <textarea |
82 | | - class="w-full h-32 p-2 border border-gray-300 rounded focus:outline-none focus:ring-2 focus:ring-light-purple" |
| 91 | + class="w-full h-32 p-2 border border-gray-300 rounded focus:outline-none focus:ring-2 focus:ring-primary-light" |
83 | 92 | value=${content} |
84 | 93 | onInput=${this.handleChange} |
85 | 94 | placeholder="Enter your text here..." |
|
259 | 268 | </div>`} |
260 | 269 | <button |
261 | 270 | onClick=${this.addPaste} |
262 | | - class="bg-gradient-to-r from-light-blue to-purple text-white px-6 py-2 rounded-full hover:opacity-90 transition-opacity shadow-md" |
| 271 | + class="bg-gradient-to-r from-primary-light to-primary text-white px-6 py-2 rounded-full hover:opacity-90 transition-opacity shadow-md" |
263 | 272 | > |
264 | 273 | Add New Paste |
265 | 274 | </button> |
|
0 commit comments