Skip to content

Commit 2e6e0cf

Browse files
committed
x
1 parent 7aeb7d9 commit 2e6e0cf

3 files changed

Lines changed: 253 additions & 97 deletions

File tree

deno.lock

Lines changed: 160 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

init/src/init.ts

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -215,15 +215,17 @@ export default {
215215
await writeFile("tailwind.config.ts", TAILWIND_CONFIG_TS);
216216
}
217217

218-
const GRADIENT_CSS = css`.fresh-gradient {
219-
background-color: rgb(134, 239, 172);
220-
background-image: linear-gradient(
221-
to right bottom,
222-
rgb(219, 234, 254),
223-
rgb(187, 247, 208),
224-
rgb(254, 249, 195)
225-
);
226-
}`;
218+
const GRADIENT_CSS = css`
219+
.fresh-gradient {
220+
background-color: rgb(134, 239, 172);
221+
background-image: linear-gradient(
222+
to right bottom,
223+
rgb(219, 234, 254),
224+
rgb(187, 247, 208),
225+
rgb(254, 249, 195)
226+
);
227+
}
228+
`;
227229

228230
const NO_TAILWIND_STYLES = css`*,
229231
*::before,

0 commit comments

Comments
 (0)