-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into ci/turbo-storybook
- Loading branch information
Showing
14 changed files
with
81 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
patreon: volebnikalkulacka | ||
custom: | ||
- https://herohero.co/volebnikalkulacka | ||
- https://www.darujme.cz/darovat/1200653 | ||
- https://www.kalkulacka.one/cs/podporte-kalkulacku | ||
- https://herohero.co/volebnikalkulacka | ||
- https://www.darujme.cz/darovat/1200653 | ||
- https://www.kalkulacka.one/cs/podporte-kalkulacku |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import type { Config } from "tailwindcss"; | ||
|
||
const color: Pick<Config, "theme"> = { | ||
theme: { | ||
extend: { | ||
colors: { | ||
red: { | ||
100: "#BB0000", | ||
}, | ||
}, | ||
}, | ||
}, | ||
}; | ||
|
||
export default color; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import type { Config } from "tailwindcss"; | ||
import defaultTheme from "tailwindcss/defaultTheme"; | ||
|
||
const typography: Pick<Config, "theme"> = { | ||
theme: { | ||
extend: { | ||
fontFamily: { | ||
sans: ['"Radio Canada"', ...defaultTheme.fontFamily.sans], | ||
}, | ||
}, | ||
}, | ||
}; | ||
|
||
export default typography; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,14 @@ | ||
import globalConfig from "@repo/tailwind-config"; | ||
import type { Config } from "tailwindcss"; | ||
import defaultTheme from "tailwindcss/defaultTheme"; | ||
|
||
const colors = { | ||
theme: { | ||
extend: { | ||
colors: { | ||
red: { | ||
100: "#BB0000", | ||
}, | ||
}, | ||
}, | ||
}, | ||
}; | ||
import globalConfig from "@repo/tailwind-config"; | ||
|
||
const fonts = { | ||
theme: { | ||
extend: { | ||
fontFamily: { | ||
sans: ['"Radio Canada"', ...defaultTheme.fontFamily.sans], | ||
}, | ||
}, | ||
}, | ||
}; | ||
import color from "./config/color.ts"; | ||
import typography from "./config/typography.ts"; | ||
|
||
const config: Pick<Config, "content" | "prefix" | "presets"> = { | ||
content: ["./src/**/*.tsx"], | ||
prefix: "ds-", | ||
presets: [globalConfig, colors, fonts], | ||
prefix: "k1-", | ||
presets: [globalConfig, color, typography], | ||
}; | ||
|
||
export default config; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters