diff options
Diffstat (limited to 'src')
85 files changed, 924 insertions, 0 deletions
diff --git a/src/App.css b/src/App.css new file mode 100644 index 0000000..85f7a4a --- /dev/null +++ b/src/App.css @@ -0,0 +1,116 @@ +.logo.vite:hover { + filter: drop-shadow(0 0 2em #747bff); +} + +.logo.react:hover { + filter: drop-shadow(0 0 2em #61dafb); +} +:root { + font-family: Inter, Avenir, Helvetica, Arial, sans-serif; + font-size: 16px; + line-height: 24px; + font-weight: 400; + + color: #0f0f0f; + background-color: #f6f6f6; + + font-synthesis: none; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + -webkit-text-size-adjust: 100%; +} + +.container { + margin: 0; + padding-top: 10vh; + display: flex; + flex-direction: column; + justify-content: center; + text-align: center; +} + +.logo { + height: 6em; + padding: 1.5em; + will-change: filter; + transition: 0.75s; +} + +.logo.tauri:hover { + filter: drop-shadow(0 0 2em #24c8db); +} + +.row { + display: flex; + justify-content: center; +} + +a { + font-weight: 500; + color: #646cff; + text-decoration: inherit; +} + +a:hover { + color: #535bf2; +} + +h1 { + text-align: center; +} + +input, +button { + border-radius: 8px; + border: 1px solid transparent; + padding: 0.6em 1.2em; + font-size: 1em; + font-weight: 500; + font-family: inherit; + color: #0f0f0f; + background-color: #ffffff; + transition: border-color 0.25s; + box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2); +} + +button { + cursor: pointer; +} + +button:hover { + border-color: #396cd8; +} +button:active { + border-color: #396cd8; + background-color: #e8e8e8; +} + +input, +button { + outline: none; +} + +#greet-input { + margin-right: 5px; +} + +@media (prefers-color-scheme: dark) { + :root { + color: #f6f6f6; + background-color: #2f2f2f; + } + + a:hover { + color: #24c8db; + } + + input, + button { + color: #ffffff; + background-color: #0f0f0f98; + } + button:active { + background-color: #0f0f0f69; + } +} diff --git a/src/App.tsx b/src/App.tsx new file mode 100644 index 0000000..a6e3249 --- /dev/null +++ b/src/App.tsx @@ -0,0 +1,12 @@ +function App() { + return ( + <main className="flex items-center justify-center min-h-screen"> + <div className="text-center"> + <h1 className="font-display text-fg-1 text-4xl mb-2">Solstice</h1> + <p className="text-fg-3">Pomodoro timer with ambient soundscapes.</p> + </div> + </main> + ); +} + +export default App; diff --git a/src/assets/icons/arrow-down.svg b/src/assets/icons/arrow-down.svg new file mode 100644 index 0000000..2d7838b --- /dev/null +++ b/src/assets/icons/arrow-down.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"> + <path d="M7 10l5 5 5-5"></path> +</svg>
\ No newline at end of file diff --git a/src/assets/icons/arrow-up.svg b/src/assets/icons/arrow-up.svg new file mode 100644 index 0000000..0f54028 --- /dev/null +++ b/src/assets/icons/arrow-up.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"> + <path d="M7 14l5-5 5 5"></path> +</svg>
\ No newline at end of file diff --git a/src/assets/icons/calendar.svg b/src/assets/icons/calendar.svg new file mode 100644 index 0000000..2a116c9 --- /dev/null +++ b/src/assets/icons/calendar.svg @@ -0,0 +1,6 @@ +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"> + <rect x="3" y="6" width="18" height="14" rx="1"></rect> + <path d="M3 10h18"></path> + <path d="M7 6V4"></path> + <path d="M17 6V4"></path> +</svg>
\ No newline at end of file diff --git a/src/assets/icons/chart.svg b/src/assets/icons/chart.svg new file mode 100644 index 0000000..830d53d --- /dev/null +++ b/src/assets/icons/chart.svg @@ -0,0 +1,6 @@ +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"> + <path d="M3 19h18"></path> + <path d="M5 19V11l3-2 3 2v8"></path> + <path d="M13 19V7l3-2 3 2v12"></path> + <path d="M5 19V13"></path> +</svg>
\ No newline at end of file diff --git a/src/assets/icons/clock.svg b/src/assets/icons/clock.svg new file mode 100644 index 0000000..42a244b --- /dev/null +++ b/src/assets/icons/clock.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"> + <circle cx="12" cy="12" r="9"></circle> + <path d="M12 7v5l3 2"></path> +</svg>
\ No newline at end of file diff --git a/src/assets/icons/command.svg b/src/assets/icons/command.svg new file mode 100644 index 0000000..19dd2af --- /dev/null +++ b/src/assets/icons/command.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"> + <path d="M5 17l5-5-5-5"></path> + <path d="M12 19h7"></path> +</svg>
\ No newline at end of file diff --git a/src/assets/icons/dollar.svg b/src/assets/icons/dollar.svg new file mode 100644 index 0000000..83e4a40 --- /dev/null +++ b/src/assets/icons/dollar.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"> + <path d="M12 3v18"></path> + <path d="M17 7H10a3 3 0 100 6h4a3 3 0 110 6H6"></path> +</svg>
\ No newline at end of file diff --git a/src/assets/icons/external.svg b/src/assets/icons/external.svg new file mode 100644 index 0000000..079a763 --- /dev/null +++ b/src/assets/icons/external.svg @@ -0,0 +1,5 @@ +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"> + <path d="M14 4h6v6"></path> + <path d="M20 4L10 14"></path> + <path d="M20 14v6H4V4h6"></path> +</svg>
\ No newline at end of file diff --git a/src/assets/icons/folder.svg b/src/assets/icons/folder.svg new file mode 100644 index 0000000..cb8ea41 --- /dev/null +++ b/src/assets/icons/folder.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"> + <path d="M4 4h8l2 3h6v11a2 2 0 01-2 2H4a2 2 0 01-2-2V6a2 2 0 012-2z" transform="translate(1 0)"></path> +</svg>
\ No newline at end of file diff --git a/src/assets/icons/ledger.svg b/src/assets/icons/ledger.svg new file mode 100644 index 0000000..989e7a8 --- /dev/null +++ b/src/assets/icons/ledger.svg @@ -0,0 +1,5 @@ +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"> + <path d="M4 7h16"></path> + <path d="M4 12h16"></path> + <path d="M4 17h10"></path> +</svg>
\ No newline at end of file diff --git a/src/assets/icons/pulse.svg b/src/assets/icons/pulse.svg new file mode 100644 index 0000000..bfa6e5b --- /dev/null +++ b/src/assets/icons/pulse.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"> + <path d="M3 12h4l3-8 4 16 3-8h4"></path> +</svg>
\ No newline at end of file diff --git a/src/assets/icons/search.svg b/src/assets/icons/search.svg new file mode 100644 index 0000000..4c561f8 --- /dev/null +++ b/src/assets/icons/search.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"> + <circle cx="11" cy="11" r="6"></circle> + <path d="M15.5 15.5L20 20"></path> +</svg>
\ No newline at end of file diff --git a/src/assets/icons/terminal.svg b/src/assets/icons/terminal.svg new file mode 100644 index 0000000..a36c7bc --- /dev/null +++ b/src/assets/icons/terminal.svg @@ -0,0 +1,6 @@ +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"> + <rect x="3" y="4" width="18" height="14" rx="1"></rect> + <path d="M3 8h18"></path> + <path d="M8 20h8"></path> + <path d="M12 18v2"></path> +</svg>
\ No newline at end of file diff --git a/src/assets/icons/user.svg b/src/assets/icons/user.svg new file mode 100644 index 0000000..45b7766 --- /dev/null +++ b/src/assets/icons/user.svg @@ -0,0 +1,4 @@ +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"> + <circle cx="12" cy="8" r="4"></circle> + <path d="M4 21c0-4 4-7 8-7s8 3 8 7"></path> +</svg>
\ No newline at end of file diff --git a/src/assets/icons/window.svg b/src/assets/icons/window.svg new file mode 100644 index 0000000..1c37c86 --- /dev/null +++ b/src/assets/icons/window.svg @@ -0,0 +1,5 @@ +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"> + <rect x="3" y="5" width="18" height="14" rx="1"></rect> + <path d="M3 9h18"></path> + <circle cx="7" cy="7" r=".5" fill="currentColor"></circle> +</svg>
\ No newline at end of file diff --git a/src/assets/react.svg b/src/assets/react.svg new file mode 100644 index 0000000..6c87de9 --- /dev/null +++ b/src/assets/react.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="35.93" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 228"><path fill="#00D8FF" d="M210.483 73.824a171.49 171.49 0 0 0-8.24-2.597c.465-1.9.893-3.777 1.273-5.621c6.238-30.281 2.16-54.676-11.769-62.708c-13.355-7.7-35.196.329-57.254 19.526a171.23 171.23 0 0 0-6.375 5.848a155.866 155.866 0 0 0-4.241-3.917C100.759 3.829 77.587-4.822 63.673 3.233C50.33 10.957 46.379 33.89 51.995 62.588a170.974 170.974 0 0 0 1.892 8.48c-3.28.932-6.445 1.924-9.474 2.98C17.309 83.498 0 98.307 0 113.668c0 15.865 18.582 31.778 46.812 41.427a145.52 145.52 0 0 0 6.921 2.165a167.467 167.467 0 0 0-2.01 9.138c-5.354 28.2-1.173 50.591 12.134 58.266c13.744 7.926 36.812-.22 59.273-19.855a145.567 145.567 0 0 0 5.342-4.923a168.064 168.064 0 0 0 6.92 6.314c21.758 18.722 43.246 26.282 56.54 18.586c13.731-7.949 18.194-32.003 12.4-61.268a145.016 145.016 0 0 0-1.535-6.842c1.62-.48 3.21-.974 4.76-1.488c29.348-9.723 48.443-25.443 48.443-41.52c0-15.417-17.868-30.326-45.517-39.844Zm-6.365 70.984c-1.4.463-2.836.91-4.3 1.345c-3.24-10.257-7.612-21.163-12.963-32.432c5.106-11 9.31-21.767 12.459-31.957c2.619.758 5.16 1.557 7.61 2.4c23.69 8.156 38.14 20.213 38.14 29.504c0 9.896-15.606 22.743-40.946 31.14Zm-10.514 20.834c2.562 12.94 2.927 24.64 1.23 33.787c-1.524 8.219-4.59 13.698-8.382 15.893c-8.067 4.67-25.32-1.4-43.927-17.412a156.726 156.726 0 0 1-6.437-5.87c7.214-7.889 14.423-17.06 21.459-27.246c12.376-1.098 24.068-2.894 34.671-5.345a134.17 134.17 0 0 1 1.386 6.193ZM87.276 214.515c-7.882 2.783-14.16 2.863-17.955.675c-8.075-4.657-11.432-22.636-6.853-46.752a156.923 156.923 0 0 1 1.869-8.499c10.486 2.32 22.093 3.988 34.498 4.994c7.084 9.967 14.501 19.128 21.976 27.15a134.668 134.668 0 0 1-4.877 4.492c-9.933 8.682-19.886 14.842-28.658 17.94ZM50.35 144.747c-12.483-4.267-22.792-9.812-29.858-15.863c-6.35-5.437-9.555-10.836-9.555-15.216c0-9.322 13.897-21.212 37.076-29.293c2.813-.98 5.757-1.905 8.812-2.773c3.204 10.42 7.406 21.315 12.477 32.332c-5.137 11.18-9.399 22.249-12.634 32.792a134.718 134.718 0 0 1-6.318-1.979Zm12.378-84.26c-4.811-24.587-1.616-43.134 6.425-47.789c8.564-4.958 27.502 2.111 47.463 19.835a144.318 144.318 0 0 1 3.841 3.545c-7.438 7.987-14.787 17.08-21.808 26.988c-12.04 1.116-23.565 2.908-34.161 5.309a160.342 160.342 0 0 1-1.76-7.887Zm110.427 27.268a347.8 347.8 0 0 0-7.785-12.803c8.168 1.033 15.994 2.404 23.343 4.08c-2.206 7.072-4.956 14.465-8.193 22.045a381.151 381.151 0 0 0-7.365-13.322Zm-45.032-43.861c5.044 5.465 10.096 11.566 15.065 18.186a322.04 322.04 0 0 0-30.257-.006c4.974-6.559 10.069-12.652 15.192-18.18ZM82.802 87.83a323.167 323.167 0 0 0-7.227 13.238c-3.184-7.553-5.909-14.98-8.134-22.152c7.304-1.634 15.093-2.97 23.209-3.984a321.524 321.524 0 0 0-7.848 12.897Zm8.081 65.352c-8.385-.936-16.291-2.203-23.593-3.793c2.26-7.3 5.045-14.885 8.298-22.6a321.187 321.187 0 0 0 7.257 13.246c2.594 4.48 5.28 8.868 8.038 13.147Zm37.542 31.03c-5.184-5.592-10.354-11.779-15.403-18.433c4.902.192 9.899.29 14.978.29c5.218 0 10.376-.117 15.453-.343c-4.985 6.774-10.018 12.97-15.028 18.486Zm52.198-57.817c3.422 7.8 6.306 15.345 8.596 22.52c-7.422 1.694-15.436 3.058-23.88 4.071a382.417 382.417 0 0 0 7.859-13.026a347.403 347.403 0 0 0 7.425-13.565Zm-16.898 8.101a358.557 358.557 0 0 1-12.281 19.815a329.4 329.4 0 0 1-23.444.823c-7.967 0-15.716-.248-23.178-.732a310.202 310.202 0 0 1-12.513-19.846h.001a307.41 307.41 0 0 1-10.923-20.627a310.278 310.278 0 0 1 10.89-20.637l-.001.001a307.318 307.318 0 0 1 12.413-19.761c7.613-.576 15.42-.876 23.31-.876H128c7.926 0 15.743.303 23.354.883a329.357 329.357 0 0 1 12.335 19.695a358.489 358.489 0 0 1 11.036 20.54a329.472 329.472 0 0 1-11 20.722Zm22.56-122.124c8.572 4.944 11.906 24.881 6.52 51.026c-.344 1.668-.73 3.367-1.15 5.09c-10.622-2.452-22.155-4.275-34.23-5.408c-7.034-10.017-14.323-19.124-21.64-27.008a160.789 160.789 0 0 1 5.888-5.4c18.9-16.447 36.564-22.941 44.612-18.3ZM128 90.808c12.625 0 22.86 10.235 22.86 22.86s-10.235 22.86-22.86 22.86s-22.86-10.235-22.86-22.86s10.235-22.86 22.86-22.86Z"></path></svg>
\ No newline at end of file diff --git a/src/fonts/EBGaramond-Italic-VariableFont_wght.ttf b/src/fonts/EBGaramond-Italic-VariableFont_wght.ttf Binary files differnew file mode 100644 index 0000000..9cb1376 --- /dev/null +++ b/src/fonts/EBGaramond-Italic-VariableFont_wght.ttf diff --git a/src/fonts/EBGaramond-VariableFont_wght.ttf b/src/fonts/EBGaramond-VariableFont_wght.ttf Binary files differnew file mode 100644 index 0000000..baf64b2 --- /dev/null +++ b/src/fonts/EBGaramond-VariableFont_wght.ttf diff --git a/src/fonts/IBM_Plex_Mono/IBMPlexMono-Bold.ttf b/src/fonts/IBM_Plex_Mono/IBMPlexMono-Bold.ttf Binary files differnew file mode 100644 index 0000000..247979c --- /dev/null +++ b/src/fonts/IBM_Plex_Mono/IBMPlexMono-Bold.ttf diff --git a/src/fonts/IBM_Plex_Mono/IBMPlexMono-BoldItalic.ttf b/src/fonts/IBM_Plex_Mono/IBMPlexMono-BoldItalic.ttf Binary files differnew file mode 100644 index 0000000..2321473 --- /dev/null +++ b/src/fonts/IBM_Plex_Mono/IBMPlexMono-BoldItalic.ttf diff --git a/src/fonts/IBM_Plex_Mono/IBMPlexMono-ExtraLight.ttf b/src/fonts/IBM_Plex_Mono/IBMPlexMono-ExtraLight.ttf Binary files differnew file mode 100644 index 0000000..d6ab75d --- /dev/null +++ b/src/fonts/IBM_Plex_Mono/IBMPlexMono-ExtraLight.ttf diff --git a/src/fonts/IBM_Plex_Mono/IBMPlexMono-ExtraLightItalic.ttf b/src/fonts/IBM_Plex_Mono/IBMPlexMono-ExtraLightItalic.ttf Binary files differnew file mode 100644 index 0000000..88308ef --- /dev/null +++ b/src/fonts/IBM_Plex_Mono/IBMPlexMono-ExtraLightItalic.ttf diff --git a/src/fonts/IBM_Plex_Mono/IBMPlexMono-Italic.ttf b/src/fonts/IBM_Plex_Mono/IBMPlexMono-Italic.ttf Binary files differnew file mode 100644 index 0000000..e259e84 --- /dev/null +++ b/src/fonts/IBM_Plex_Mono/IBMPlexMono-Italic.ttf diff --git a/src/fonts/IBM_Plex_Mono/IBMPlexMono-Light.ttf b/src/fonts/IBM_Plex_Mono/IBMPlexMono-Light.ttf Binary files differnew file mode 100644 index 0000000..0dcb2fb --- /dev/null +++ b/src/fonts/IBM_Plex_Mono/IBMPlexMono-Light.ttf diff --git a/src/fonts/IBM_Plex_Mono/IBMPlexMono-LightItalic.ttf b/src/fonts/IBM_Plex_Mono/IBMPlexMono-LightItalic.ttf Binary files differnew file mode 100644 index 0000000..f4a5fea --- /dev/null +++ b/src/fonts/IBM_Plex_Mono/IBMPlexMono-LightItalic.ttf diff --git a/src/fonts/IBM_Plex_Mono/IBMPlexMono-Medium.ttf b/src/fonts/IBM_Plex_Mono/IBMPlexMono-Medium.ttf Binary files differnew file mode 100644 index 0000000..8253c5f --- /dev/null +++ b/src/fonts/IBM_Plex_Mono/IBMPlexMono-Medium.ttf diff --git a/src/fonts/IBM_Plex_Mono/IBMPlexMono-MediumItalic.ttf b/src/fonts/IBM_Plex_Mono/IBMPlexMono-MediumItalic.ttf Binary files differnew file mode 100644 index 0000000..528b13b --- /dev/null +++ b/src/fonts/IBM_Plex_Mono/IBMPlexMono-MediumItalic.ttf diff --git a/src/fonts/IBM_Plex_Mono/IBMPlexMono-Regular.ttf b/src/fonts/IBM_Plex_Mono/IBMPlexMono-Regular.ttf Binary files differnew file mode 100644 index 0000000..601ae94 --- /dev/null +++ b/src/fonts/IBM_Plex_Mono/IBMPlexMono-Regular.ttf diff --git a/src/fonts/IBM_Plex_Mono/IBMPlexMono-SemiBold.ttf b/src/fonts/IBM_Plex_Mono/IBMPlexMono-SemiBold.ttf Binary files differnew file mode 100644 index 0000000..5e0b41d --- /dev/null +++ b/src/fonts/IBM_Plex_Mono/IBMPlexMono-SemiBold.ttf diff --git a/src/fonts/IBM_Plex_Mono/IBMPlexMono-SemiBoldItalic.ttf b/src/fonts/IBM_Plex_Mono/IBMPlexMono-SemiBoldItalic.ttf Binary files differnew file mode 100644 index 0000000..58243dd --- /dev/null +++ b/src/fonts/IBM_Plex_Mono/IBMPlexMono-SemiBoldItalic.ttf diff --git a/src/fonts/IBM_Plex_Mono/IBMPlexMono-Thin.ttf b/src/fonts/IBM_Plex_Mono/IBMPlexMono-Thin.ttf Binary files differnew file mode 100644 index 0000000..e069a64 --- /dev/null +++ b/src/fonts/IBM_Plex_Mono/IBMPlexMono-Thin.ttf diff --git a/src/fonts/IBM_Plex_Mono/IBMPlexMono-ThinItalic.ttf b/src/fonts/IBM_Plex_Mono/IBMPlexMono-ThinItalic.ttf Binary files differnew file mode 100644 index 0000000..f3ed26b --- /dev/null +++ b/src/fonts/IBM_Plex_Mono/IBMPlexMono-ThinItalic.ttf diff --git a/src/fonts/IBM_Plex_Mono/OFL.txt b/src/fonts/IBM_Plex_Mono/OFL.txt new file mode 100644 index 0000000..5bb330e --- /dev/null +++ b/src/fonts/IBM_Plex_Mono/OFL.txt @@ -0,0 +1,93 @@ +Copyright © 2017 IBM Corp. with Reserved Font Name "Plex"
+
+This Font Software is licensed under the SIL Open Font License, Version 1.1.
+This license is copied below, and is also available with a FAQ at:
+https://openfontlicense.org
+
+
+-----------------------------------------------------------
+SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
+-----------------------------------------------------------
+
+PREAMBLE
+The goals of the Open Font License (OFL) are to stimulate worldwide
+development of collaborative font projects, to support the font creation
+efforts of academic and linguistic communities, and to provide a free and
+open framework in which fonts may be shared and improved in partnership
+with others.
+
+The OFL allows the licensed fonts to be used, studied, modified and
+redistributed freely as long as they are not sold by themselves. The
+fonts, including any derivative works, can be bundled, embedded,
+redistributed and/or sold with any software provided that any reserved
+names are not used by derivative works. The fonts and derivatives,
+however, cannot be released under any other type of license. The
+requirement for fonts to remain under this license does not apply
+to any document created using the fonts or their derivatives.
+
+DEFINITIONS
+"Font Software" refers to the set of files released by the Copyright
+Holder(s) under this license and clearly marked as such. This may
+include source files, build scripts and documentation.
+
+"Reserved Font Name" refers to any names specified as such after the
+copyright statement(s).
+
+"Original Version" refers to the collection of Font Software components as
+distributed by the Copyright Holder(s).
+
+"Modified Version" refers to any derivative made by adding to, deleting,
+or substituting -- in part or in whole -- any of the components of the
+Original Version, by changing formats or by porting the Font Software to a
+new environment.
+
+"Author" refers to any designer, engineer, programmer, technical
+writer or other person who contributed to the Font Software.
+
+PERMISSION & CONDITIONS
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of the Font Software, to use, study, copy, merge, embed, modify,
+redistribute, and sell modified and unmodified copies of the Font
+Software, subject to the following conditions:
+
+1) Neither the Font Software nor any of its individual components,
+in Original or Modified Versions, may be sold by itself.
+
+2) Original or Modified Versions of the Font Software may be bundled,
+redistributed and/or sold with any software, provided that each copy
+contains the above copyright notice and this license. These can be
+included either as stand-alone text files, human-readable headers or
+in the appropriate machine-readable metadata fields within text or
+binary files as long as those fields can be easily viewed by the user.
+
+3) No Modified Version of the Font Software may use the Reserved Font
+Name(s) unless explicit written permission is granted by the corresponding
+Copyright Holder. This restriction only applies to the primary font name as
+presented to the users.
+
+4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
+Software shall not be used to promote, endorse or advertise any
+Modified Version, except to acknowledge the contribution(s) of the
+Copyright Holder(s) and the Author(s) or with their explicit written
+permission.
+
+5) The Font Software, modified or unmodified, in part or in whole,
+must be distributed entirely under this license, and must not be
+distributed under any other license. The requirement for fonts to
+remain under this license does not apply to any document created
+using the Font Software.
+
+TERMINATION
+This license becomes null and void if any of the above conditions are
+not met.
+
+DISCLAIMER
+THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
+OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
+COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
+DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
+OTHER DEALINGS IN THE FONT SOFTWARE.
diff --git a/src/fonts/IBM_Plex_Sans/IBMPlexSans-Italic-VariableFont_wdth,wght.ttf b/src/fonts/IBM_Plex_Sans/IBMPlexSans-Italic-VariableFont_wdth,wght.ttf Binary files differnew file mode 100644 index 0000000..6232aaa --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/IBMPlexSans-Italic-VariableFont_wdth,wght.ttf diff --git a/src/fonts/IBM_Plex_Sans/IBMPlexSans-VariableFont_wdth,wght.ttf b/src/fonts/IBM_Plex_Sans/IBMPlexSans-VariableFont_wdth,wght.ttf Binary files differnew file mode 100644 index 0000000..9add875 --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/IBMPlexSans-VariableFont_wdth,wght.ttf diff --git a/src/fonts/IBM_Plex_Sans/OFL.txt b/src/fonts/IBM_Plex_Sans/OFL.txt new file mode 100644 index 0000000..5bb330e --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/OFL.txt @@ -0,0 +1,93 @@ +Copyright © 2017 IBM Corp. with Reserved Font Name "Plex"
+
+This Font Software is licensed under the SIL Open Font License, Version 1.1.
+This license is copied below, and is also available with a FAQ at:
+https://openfontlicense.org
+
+
+-----------------------------------------------------------
+SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
+-----------------------------------------------------------
+
+PREAMBLE
+The goals of the Open Font License (OFL) are to stimulate worldwide
+development of collaborative font projects, to support the font creation
+efforts of academic and linguistic communities, and to provide a free and
+open framework in which fonts may be shared and improved in partnership
+with others.
+
+The OFL allows the licensed fonts to be used, studied, modified and
+redistributed freely as long as they are not sold by themselves. The
+fonts, including any derivative works, can be bundled, embedded,
+redistributed and/or sold with any software provided that any reserved
+names are not used by derivative works. The fonts and derivatives,
+however, cannot be released under any other type of license. The
+requirement for fonts to remain under this license does not apply
+to any document created using the fonts or their derivatives.
+
+DEFINITIONS
+"Font Software" refers to the set of files released by the Copyright
+Holder(s) under this license and clearly marked as such. This may
+include source files, build scripts and documentation.
+
+"Reserved Font Name" refers to any names specified as such after the
+copyright statement(s).
+
+"Original Version" refers to the collection of Font Software components as
+distributed by the Copyright Holder(s).
+
+"Modified Version" refers to any derivative made by adding to, deleting,
+or substituting -- in part or in whole -- any of the components of the
+Original Version, by changing formats or by porting the Font Software to a
+new environment.
+
+"Author" refers to any designer, engineer, programmer, technical
+writer or other person who contributed to the Font Software.
+
+PERMISSION & CONDITIONS
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of the Font Software, to use, study, copy, merge, embed, modify,
+redistribute, and sell modified and unmodified copies of the Font
+Software, subject to the following conditions:
+
+1) Neither the Font Software nor any of its individual components,
+in Original or Modified Versions, may be sold by itself.
+
+2) Original or Modified Versions of the Font Software may be bundled,
+redistributed and/or sold with any software, provided that each copy
+contains the above copyright notice and this license. These can be
+included either as stand-alone text files, human-readable headers or
+in the appropriate machine-readable metadata fields within text or
+binary files as long as those fields can be easily viewed by the user.
+
+3) No Modified Version of the Font Software may use the Reserved Font
+Name(s) unless explicit written permission is granted by the corresponding
+Copyright Holder. This restriction only applies to the primary font name as
+presented to the users.
+
+4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
+Software shall not be used to promote, endorse or advertise any
+Modified Version, except to acknowledge the contribution(s) of the
+Copyright Holder(s) and the Author(s) or with their explicit written
+permission.
+
+5) The Font Software, modified or unmodified, in part or in whole,
+must be distributed entirely under this license, and must not be
+distributed under any other license. The requirement for fonts to
+remain under this license does not apply to any document created
+using the Font Software.
+
+TERMINATION
+This license becomes null and void if any of the above conditions are
+not met.
+
+DISCLAIMER
+THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
+OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
+COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
+DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
+OTHER DEALINGS IN THE FONT SOFTWARE.
diff --git a/src/fonts/IBM_Plex_Sans/README.txt b/src/fonts/IBM_Plex_Sans/README.txt new file mode 100644 index 0000000..65b4063 --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/README.txt @@ -0,0 +1,106 @@ +IBM Plex Sans Variable Font +=========================== + +This download contains IBM Plex Sans as both variable fonts and static fonts. + +IBM Plex Sans is a variable font with these axes: + wdth + wght + +This means all the styles are contained in these files: + IBMPlexSans-VariableFont_wdth,wght.ttf + IBMPlexSans-Italic-VariableFont_wdth,wght.ttf + +If your app fully supports variable fonts, you can now pick intermediate styles +that aren’t available as static fonts. Not all apps support variable fonts, and +in those cases you can use the static font files for IBM Plex Sans: + static/IBMPlexSans_Condensed-Thin.ttf + static/IBMPlexSans_Condensed-ExtraLight.ttf + static/IBMPlexSans_Condensed-Light.ttf + static/IBMPlexSans_Condensed-Regular.ttf + static/IBMPlexSans_Condensed-Medium.ttf + static/IBMPlexSans_Condensed-SemiBold.ttf + static/IBMPlexSans_Condensed-Bold.ttf + static/IBMPlexSans_SemiCondensed-Thin.ttf + static/IBMPlexSans_SemiCondensed-ExtraLight.ttf + static/IBMPlexSans_SemiCondensed-Light.ttf + static/IBMPlexSans_SemiCondensed-Regular.ttf + static/IBMPlexSans_SemiCondensed-Medium.ttf + static/IBMPlexSans_SemiCondensed-SemiBold.ttf + static/IBMPlexSans_SemiCondensed-Bold.ttf + static/IBMPlexSans-Thin.ttf + static/IBMPlexSans-ExtraLight.ttf + static/IBMPlexSans-Light.ttf + static/IBMPlexSans-Regular.ttf + static/IBMPlexSans-Medium.ttf + static/IBMPlexSans-SemiBold.ttf + static/IBMPlexSans-Bold.ttf + static/IBMPlexSans_Condensed-ThinItalic.ttf + static/IBMPlexSans_Condensed-ExtraLightItalic.ttf + static/IBMPlexSans_Condensed-LightItalic.ttf + static/IBMPlexSans_Condensed-Italic.ttf + static/IBMPlexSans_Condensed-MediumItalic.ttf + static/IBMPlexSans_Condensed-SemiBoldItalic.ttf + static/IBMPlexSans_Condensed-BoldItalic.ttf + static/IBMPlexSans_SemiCondensed-ThinItalic.ttf + static/IBMPlexSans_SemiCondensed-ExtraLightItalic.ttf + static/IBMPlexSans_SemiCondensed-LightItalic.ttf + static/IBMPlexSans_SemiCondensed-Italic.ttf + static/IBMPlexSans_SemiCondensed-MediumItalic.ttf + static/IBMPlexSans_SemiCondensed-SemiBoldItalic.ttf + static/IBMPlexSans_SemiCondensed-BoldItalic.ttf + static/IBMPlexSans-ThinItalic.ttf + static/IBMPlexSans-ExtraLightItalic.ttf + static/IBMPlexSans-LightItalic.ttf + static/IBMPlexSans-Italic.ttf + static/IBMPlexSans-MediumItalic.ttf + static/IBMPlexSans-SemiBoldItalic.ttf + static/IBMPlexSans-BoldItalic.ttf + +Get started +----------- + +1. Install the font files you want to use + +2. Use your app's font picker to view the font family and all the +available styles + +Learn more about variable fonts +------------------------------- + + https://developers.google.com/web/fundamentals/design-and-ux/typography/variable-fonts + https://variablefonts.typenetwork.com + https://medium.com/variable-fonts + +In desktop apps + + https://theblog.adobe.com/can-variable-fonts-illustrator-cc + https://helpx.adobe.com/nz/photoshop/using/fonts.html#variable_fonts + +Online + + https://developers.google.com/fonts/docs/getting_started + https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Fonts/Variable_Fonts_Guide + https://developer.microsoft.com/en-us/microsoft-edge/testdrive/demos/variable-fonts + +Installing fonts + + MacOS: https://support.apple.com/en-us/HT201749 + Linux: https://www.google.com/search?q=how+to+install+a+font+on+gnu%2Blinux + Windows: https://support.microsoft.com/en-us/help/314960/how-to-install-or-remove-a-font-in-windows + +Android Apps + + https://developers.google.com/fonts/docs/android + https://developer.android.com/guide/topics/ui/look-and-feel/downloadable-fonts + +License +------- +Please read the full license text (OFL.txt) to understand the permissions, +restrictions and requirements for usage, redistribution, and modification. + +You can use them in your products & projects – print or digital, +commercial or otherwise. + +This isn't legal advice, please consider consulting a lawyer and see the full +license for all details. diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-Bold.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-Bold.ttf Binary files differnew file mode 100644 index 0000000..258c10a --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-Bold.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-BoldItalic.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-BoldItalic.ttf Binary files differnew file mode 100644 index 0000000..fabdca0 --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-BoldItalic.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-ExtraLight.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-ExtraLight.ttf Binary files differnew file mode 100644 index 0000000..46f52c4 --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-ExtraLight.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-ExtraLightItalic.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-ExtraLightItalic.ttf Binary files differnew file mode 100644 index 0000000..6fac7fa --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-ExtraLightItalic.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-Italic.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-Italic.ttf Binary files differnew file mode 100644 index 0000000..bf43956 --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-Italic.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-Light.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-Light.ttf Binary files differnew file mode 100644 index 0000000..56e7db7 --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-Light.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-LightItalic.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-LightItalic.ttf Binary files differnew file mode 100644 index 0000000..1e2e86a --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-LightItalic.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-Medium.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-Medium.ttf Binary files differnew file mode 100644 index 0000000..fb75072 --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-Medium.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-MediumItalic.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-MediumItalic.ttf Binary files differnew file mode 100644 index 0000000..1b059be --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-MediumItalic.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-Regular.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-Regular.ttf Binary files differnew file mode 100644 index 0000000..5387ad4 --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-Regular.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-SemiBold.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-SemiBold.ttf Binary files differnew file mode 100644 index 0000000..a63f1c5 --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-SemiBold.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-SemiBoldItalic.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-SemiBoldItalic.ttf Binary files differnew file mode 100644 index 0000000..981d514 --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-SemiBoldItalic.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-Thin.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-Thin.ttf Binary files differnew file mode 100644 index 0000000..918d4a0 --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-Thin.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-ThinItalic.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-ThinItalic.ttf Binary files differnew file mode 100644 index 0000000..f7d1dab --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans-ThinItalic.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-Bold.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-Bold.ttf Binary files differnew file mode 100644 index 0000000..064ffb4 --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-Bold.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-BoldItalic.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-BoldItalic.ttf Binary files differnew file mode 100644 index 0000000..924b914 --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-BoldItalic.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-ExtraLight.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-ExtraLight.ttf Binary files differnew file mode 100644 index 0000000..cdf06a1 --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-ExtraLight.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-ExtraLightItalic.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-ExtraLightItalic.ttf Binary files differnew file mode 100644 index 0000000..9b9f6ce --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-ExtraLightItalic.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-Italic.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-Italic.ttf Binary files differnew file mode 100644 index 0000000..03de618 --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-Italic.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-Light.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-Light.ttf Binary files differnew file mode 100644 index 0000000..f8f53b9 --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-Light.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-LightItalic.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-LightItalic.ttf Binary files differnew file mode 100644 index 0000000..b0cd1b2 --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-LightItalic.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-Medium.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-Medium.ttf Binary files differnew file mode 100644 index 0000000..7ae38ba --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-Medium.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-MediumItalic.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-MediumItalic.ttf Binary files differnew file mode 100644 index 0000000..0a09a4f --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-MediumItalic.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-Regular.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-Regular.ttf Binary files differnew file mode 100644 index 0000000..fd7f8a0 --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-Regular.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-SemiBold.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-SemiBold.ttf Binary files differnew file mode 100644 index 0000000..a715d67 --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-SemiBold.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-SemiBoldItalic.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-SemiBoldItalic.ttf Binary files differnew file mode 100644 index 0000000..1ca1180 --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-SemiBoldItalic.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-Thin.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-Thin.ttf Binary files differnew file mode 100644 index 0000000..f2bce48 --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-Thin.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-ThinItalic.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-ThinItalic.ttf Binary files differnew file mode 100644 index 0000000..b2ff4b1 --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_Condensed-ThinItalic.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-Bold.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-Bold.ttf Binary files differnew file mode 100644 index 0000000..e6f7439 --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-Bold.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-BoldItalic.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-BoldItalic.ttf Binary files differnew file mode 100644 index 0000000..15a7756 --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-BoldItalic.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-ExtraLight.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-ExtraLight.ttf Binary files differnew file mode 100644 index 0000000..cd72939 --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-ExtraLight.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-ExtraLightItalic.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-ExtraLightItalic.ttf Binary files differnew file mode 100644 index 0000000..ec6f0f0 --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-ExtraLightItalic.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-Italic.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-Italic.ttf Binary files differnew file mode 100644 index 0000000..0b6665d --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-Italic.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-Light.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-Light.ttf Binary files differnew file mode 100644 index 0000000..3a24359 --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-Light.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-LightItalic.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-LightItalic.ttf Binary files differnew file mode 100644 index 0000000..64cb0e7 --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-LightItalic.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-Medium.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-Medium.ttf Binary files differnew file mode 100644 index 0000000..a432758 --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-Medium.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-MediumItalic.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-MediumItalic.ttf Binary files differnew file mode 100644 index 0000000..c8f51aa --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-MediumItalic.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-Regular.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-Regular.ttf Binary files differnew file mode 100644 index 0000000..ad9a625 --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-Regular.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-SemiBold.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-SemiBold.ttf Binary files differnew file mode 100644 index 0000000..77832b0 --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-SemiBold.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-SemiBoldItalic.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-SemiBoldItalic.ttf Binary files differnew file mode 100644 index 0000000..6f11e69 --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-SemiBoldItalic.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-Thin.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-Thin.ttf Binary files differnew file mode 100644 index 0000000..dda2e8a --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-Thin.ttf diff --git a/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-ThinItalic.ttf b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-ThinItalic.ttf Binary files differnew file mode 100644 index 0000000..4d4518e --- /dev/null +++ b/src/fonts/IBM_Plex_Sans/static/IBMPlexSans_SemiCondensed-ThinItalic.ttf diff --git a/src/main.tsx b/src/main.tsx new file mode 100644 index 0000000..e6d4740 --- /dev/null +++ b/src/main.tsx @@ -0,0 +1,10 @@ +import React from "react"; +import ReactDOM from "react-dom/client"; +import "./styles/global.css"; +import App from "./App"; + +ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render( + <React.StrictMode> + <App /> + </React.StrictMode>, +); diff --git a/src/styles/global.css b/src/styles/global.css new file mode 100644 index 0000000..2f1d37e --- /dev/null +++ b/src/styles/global.css @@ -0,0 +1,73 @@ +@import "./tokens.css"; +@import "tailwindcss"; + +@layer base { + :root { + /* Surface colors */ + --color-ink-0: var(--ink-0); + --color-ink-1: var(--ink-1); + --color-ink-2: var(--ink-2); + --color-ink-3: var(--ink-3); + --color-ink-4: var(--ink-4); + + /* Line colors */ + --color-line-1: var(--line-1); + --color-line-2: var(--line-2); + --color-line-3: var(--line-3); + + /* Foreground */ + --color-fg-1: var(--fg-1); + --color-fg-2: var(--fg-2); + --color-fg-3: var(--fg-3); + --color-fg-4: var(--fg-4); + + /* Accent */ + --color-brass: var(--brass); + --color-brass-bright: var(--brass-bright); + --color-brass-deep: var(--brass-deep); + --color-brass-ink: var(--brass-ink); + + /* Secondary palette */ + --color-oxford: var(--oxford); + --color-oxford-light: var(--oxford-light); + --color-burgundy: var(--burgundy); + --color-burgundy-light: var(--burgundy-light); + + /* Semantic */ + --color-positive: var(--positive); + --color-positive-bg: var(--positive-bg); + --color-negative: var(--negative); + --color-negative-bg: var(--negative-bg); + --color-warning: var(--warning); + --color-warning-bg: var(--warning-bg); + --color-info: var(--info); + --color-info-bg: var(--info-bg); + + /* Border radii */ + --radius-1: var(--r-1); + --radius-2: var(--r-2); + --radius-3: var(--r-3); + --radius-4: var(--r-4); + --radius-full: var(--r-full); + + /* Shadows */ + --shadow-s1: var(--shadow-1); + --shadow-s2: var(--shadow-2); + --shadow-s3: var(--shadow-3); + --shadow-sbr: var(--shadow-brass); + } + + html, body { + background: var(--ink-0); + color: var(--fg-2); + font-family: var(--font-sans); + font-size: var(--fs-16); + line-height: var(--lh-normal); + -webkit-font-smoothing: antialiased; + text-rendering: optimizeLegibility; + } + + #root { + min-height: 100vh; + } +} diff --git a/src/styles/tokens.css b/src/styles/tokens.css new file mode 100644 index 0000000..1ccaf4a --- /dev/null +++ b/src/styles/tokens.css @@ -0,0 +1,354 @@ +/* ========================================================================= + Tyler Hoang — Colors & Type + Dark, traditional, polished. Finance-forward. + ========================================================================= */ + +/* ========================================================================= + LOCAL BRAND FONTS — all self-hosted, no network requests + ========================================================================= */ + +/* EB Garamond — variable, both axes */ +@font-face { + font-family: 'EB Garamond'; + src: url('../fonts/EBGaramond-VariableFont_wght.ttf') format('truetype-variations'), + url('../fonts/EBGaramond-VariableFont_wght.ttf') format('truetype'); + font-weight: 400 800; + font-style: normal; + font-display: swap; +} +@font-face { + font-family: 'EB Garamond'; + src: url('../fonts/EBGaramond-Italic-VariableFont_wght.ttf') format('truetype-variations'), + url('../fonts/EBGaramond-Italic-VariableFont_wght.ttf') format('truetype'); + font-weight: 400 800; + font-style: italic; + font-display: swap; +} + +/* IBM Plex Sans — variable, both axes (wdth + wght) */ +@font-face { + font-family: 'IBM Plex Sans'; + src: url('../fonts/IBM_Plex_Sans/IBMPlexSans-VariableFont_wdth,wght.ttf') format('truetype-variations'), + url('../fonts/IBM_Plex_Sans/IBMPlexSans-VariableFont_wdth,wght.ttf') format('truetype'); + font-weight: 100 700; + font-stretch: 85% 100%; + font-style: normal; + font-display: swap; +} +@font-face { + font-family: 'IBM Plex Sans'; + src: url('../fonts/IBM_Plex_Sans/IBMPlexSans-Italic-VariableFont_wdth,wght.ttf') format('truetype-variations'), + url('../fonts/IBM_Plex_Sans/IBMPlexSans-Italic-VariableFont_wdth,wght.ttf') format('truetype'); + font-weight: 100 700; + font-stretch: 85% 100%; + font-style: italic; + font-display: swap; +} + +/* IBM Plex Mono — static weights 300 / 400 / 500 / 600 (roman + italic) */ +@font-face { + font-family: 'IBM Plex Mono'; + src: url('../fonts/IBM_Plex_Mono/IBMPlexMono-Light.ttf') format('truetype'); + font-weight: 300; + font-style: normal; + font-display: swap; +} +@font-face { + font-family: 'IBM Plex Mono'; + src: url('../fonts/IBM_Plex_Mono/IBMPlexMono-LightItalic.ttf') format('truetype'); + font-weight: 300; + font-style: italic; + font-display: swap; +} +@font-face { + font-family: 'IBM Plex Mono'; + src: url('../fonts/IBM_Plex_Mono/IBMPlexMono-Regular.ttf') format('truetype'); + font-weight: 400; + font-style: normal; + font-display: swap; +} +@font-face { + font-family: 'IBM Plex Mono'; + src: url('../fonts/IBM_Plex_Mono/IBMPlexMono-Italic.ttf') format('truetype'); + font-weight: 400; + font-style: italic; + font-display: swap; +} +@font-face { + font-family: 'IBM Plex Mono'; + src: url('../fonts/IBM_Plex_Mono/IBMPlexMono-Medium.ttf') format('truetype'); + font-weight: 500; + font-style: normal; + font-display: swap; +} +@font-face { + font-family: 'IBM Plex Mono'; + src: url('../fonts/IBM_Plex_Mono/IBMPlexMono-MediumItalic.ttf') format('truetype'); + font-weight: 500; + font-style: italic; + font-display: swap; +} +@font-face { + font-family: 'IBM Plex Mono'; + src: url('../fonts/IBM_Plex_Mono/IBMPlexMono-SemiBold.ttf') format('truetype'); + font-weight: 600; + font-style: normal; + font-display: swap; +} +@font-face { + font-family: 'IBM Plex Mono'; + src: url('../fonts/IBM_Plex_Mono/IBMPlexMono-SemiBoldItalic.ttf') format('truetype'); + font-weight: 600; + font-style: italic; + font-display: swap; +} + +:root { + /* ---------- COLOR — Surfaces (warm-cool ink, never pure black) ---------- */ + --ink-0: #0B0E13; /* page background — deep midnight, hint of blue */ + --ink-1: #11151C; /* card / surface 1 */ + --ink-2: #181D26; /* surface 2 — popovers, raised */ + --ink-3: #222934; /* surface 3 — input fills */ + --ink-4: #2C3340; /* surface 4 — hover */ + + /* ---------- COLOR — Lines ---------- */ + --line-1: #232934; /* hairline divider */ + --line-2: #2E3645; /* default border */ + --line-3: #3D4658; /* prominent border / focus ring base */ + + /* ---------- COLOR — Foreground (warm cream — never pure white) ---------- */ + --fg-1: #F2ECDC; /* high — headings, primary text */ + --fg-2: #C7C0AE; /* mid — body text */ + --fg-3: #8E8676; /* low — secondary, captions */ + --fg-4: #5E5849; /* lowest — disabled, tertiary */ + + /* ---------- COLOR — Brand accents (restrained, traditional) ---------- */ + /* Champagne — soft, muted, never honey-gold. Confirmed by user + against the "Lumière" gold which read too yellow. */ + --brass: #C2AA7A; /* primary accent — muted champagne */ + --brass-bright: #DCC79E; /* hover / highlight — pale champagne */ + --brass-deep: #8F7A50; /* pressed — deeper champagne */ + --brass-ink: #17120A; /* on-brass foreground */ + + --oxford: #1F3D5C; /* secondary — oxford navy */ + --oxford-light: #2E5A87; + --burgundy: #6E2A2E; /* tertiary — bound-leather burgundy */ + --burgundy-light:#8B3A3F; + + /* ---------- COLOR — Semantic (financial; never neon) ---------- */ + --positive: #4F8C5E; /* gain — forest green */ + --positive-bg: #15241A; + --negative: #B5494B; /* loss — muted vermilion */ + --negative-bg: #2A1517; + --warning: #C49545; /* caution — amber */ + --warning-bg: #2A1F0F; + --info: #4A78B5; /* info — slate blue */ + --info-bg: #11202E; + + /* ---------- COLOR — Selection / focus ---------- */ + --focus-ring: rgba(194, 170, 122, 0.55); /* champagne at 55% */ + --selection-bg: rgba(194, 170, 122, 0.25); + + /* ---------- TYPE — Families ---------- */ + --font-display: 'EB Garamond', 'Source Serif Pro', 'Georgia', serif; + --font-sans: 'IBM Plex Sans', 'Helvetica Neue', system-ui, sans-serif; + --font-mono: 'IBM Plex Mono', 'SF Mono', Menlo, monospace; + + /* ---------- TYPE — Scale (modular, 1.250 — major third) ---------- */ + --fs-12: 0.75rem; /* 12 — micro / labels */ + --fs-13: 0.8125rem; /* 13 — caption */ + --fs-14: 0.875rem; /* 14 — small */ + --fs-16: 1rem; /* 16 — body */ + --fs-18: 1.125rem; /* 18 — body lg */ + --fs-20: 1.25rem; /* 20 — h6 */ + --fs-24: 1.5rem; /* 24 — h5 */ + --fs-30: 1.875rem; /* 30 — h4 */ + --fs-38: 2.375rem; /* 38 — h3 */ + --fs-48: 3rem; /* 48 — h2 */ + --fs-64: 4rem; /* 64 — h1 */ + --fs-88: 5.5rem; /* 88 — display */ + + /* ---------- TYPE — Weights ---------- */ + --w-light: 300; + --w-regular: 400; + --w-medium: 500; + --w-semibold: 600; + --w-bold: 700; + + /* ---------- TYPE — Line heights ---------- */ + --lh-tight: 1.05; + --lh-snug: 1.2; + --lh-normal: 1.45; + --lh-relaxed: 1.6; + + /* ---------- TYPE — Tracking ---------- */ + --tr-tight: -0.02em; + --tr-snug: -0.01em; + --tr-normal: 0; + --tr-wide: 0.04em; + --tr-wider: 0.12em; /* small-caps labels */ + + /* ---------- SPACING (4px base) ---------- */ + --sp-1: 4px; + --sp-2: 8px; + --sp-3: 12px; + --sp-4: 16px; + --sp-5: 24px; + --sp-6: 32px; + --sp-7: 48px; + --sp-8: 64px; + --sp-9: 96px; + --sp-10: 128px; + + /* ---------- RADII — small, never bubbly ---------- */ + --r-0: 0; + --r-1: 2px; + --r-2: 4px; + --r-3: 6px; /* cards default */ + --r-4: 8px; /* large surfaces */ + --r-full: 999px; + + /* ---------- ELEVATION — long, low, warm ---------- */ + --shadow-1: 0 1px 0 rgba(0,0,0,.4), 0 1px 2px rgba(0,0,0,.3); + --shadow-2: 0 1px 0 rgba(0,0,0,.4), 0 4px 12px rgba(0,0,0,.45); + --shadow-3: 0 2px 0 rgba(0,0,0,.5), 0 12px 32px rgba(0,0,0,.55); + --shadow-inset: inset 0 1px 0 rgba(255,255,255,.04); + --shadow-brass: 0 0 0 1px rgba(194,170,122,.35), 0 6px 20px rgba(194,170,122,.18); +} + +/* ========================================================================= + SEMANTIC TYPE STYLES + ========================================================================= */ + +body { + font-family: var(--font-sans); + font-size: var(--fs-16); + line-height: var(--lh-normal); + color: var(--fg-2); + background: var(--ink-0); + font-weight: var(--w-regular); + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; +} + +::selection { background: var(--selection-bg); color: var(--fg-1); } + +.display, h1.display { + font-family: var(--font-display); + font-size: var(--fs-88); + font-weight: var(--w-regular); + line-height: var(--lh-tight); + letter-spacing: var(--tr-tight); + color: var(--fg-1); + font-style: italic; /* EB Garamond italics are the signature move */ +} + +h1, .h1 { + font-family: var(--font-display); + font-size: var(--fs-64); + font-weight: var(--w-regular); + line-height: var(--lh-tight); + letter-spacing: var(--tr-tight); + color: var(--fg-1); + margin: 0; +} + +h2, .h2 { + font-family: var(--font-display); + font-size: var(--fs-48); + font-weight: var(--w-regular); + line-height: var(--lh-snug); + letter-spacing: var(--tr-snug); + color: var(--fg-1); + margin: 0; +} + +h3, .h3 { + font-family: var(--font-display); + font-size: var(--fs-30); + font-weight: var(--w-medium); + line-height: var(--lh-snug); + color: var(--fg-1); + margin: 0; +} + +h4, .h4 { + font-family: var(--font-sans); + font-size: var(--fs-20); + font-weight: var(--w-semibold); + line-height: var(--lh-snug); + letter-spacing: var(--tr-snug); + color: var(--fg-1); + margin: 0; +} + +h5, .h5 { + font-family: var(--font-sans); + font-size: var(--fs-16); + font-weight: var(--w-semibold); + line-height: var(--lh-snug); + color: var(--fg-1); + margin: 0; +} + +h6, .eyebrow { + font-family: var(--font-sans); + font-size: var(--fs-12); + font-weight: var(--w-semibold); + text-transform: uppercase; + letter-spacing: var(--tr-wider); + color: var(--fg-3); + margin: 0; +} + +p, .p { + font-family: var(--font-sans); + font-size: var(--fs-16); + line-height: var(--lh-relaxed); + color: var(--fg-2); + margin: 0; +} + +.lead { + font-family: var(--font-display); + font-size: var(--fs-24); + font-weight: var(--w-regular); + line-height: var(--lh-relaxed); + color: var(--fg-1); + font-style: italic; +} + +.caption { + font-family: var(--font-sans); + font-size: var(--fs-13); + line-height: var(--lh-normal); + color: var(--fg-3); +} + +.micro { + font-family: var(--font-sans); + font-size: var(--fs-12); + text-transform: uppercase; + letter-spacing: var(--tr-wider); + color: var(--fg-3); +} + +code, .code { + font-family: var(--font-mono); + font-size: 0.92em; + background: var(--ink-3); + color: var(--fg-1); + padding: 2px 6px; + border-radius: var(--r-1); + border: 1px solid var(--line-1); +} + +.tabular { font-family: var(--font-mono); font-variant-numeric: tabular-nums; } + +a { + color: var(--brass-bright); + text-decoration: none; + border-bottom: 1px solid var(--brass-deep); + transition: color .15s ease, border-color .15s ease; +} +a:hover { color: var(--fg-1); border-color: var(--brass-bright); } diff --git a/src/vite-env.d.ts b/src/vite-env.d.ts new file mode 100644 index 0000000..11f02fe --- /dev/null +++ b/src/vite-env.d.ts @@ -0,0 +1 @@ +/// <reference types="vite/client" /> |
