It was like that when I got here
This commit is contained in:
parent
331423d3f6
commit
18251d7f00
36 changed files with 1534 additions and 1000 deletions
10
styles/tailwind/_border-radius.scss
Normal file
10
styles/tailwind/_border-radius.scss
Normal file
|
@ -0,0 +1,10 @@
|
|||
/* https://github.com/tailwindlabs/tailwindcss/blob/ac6d4a6e8e9ae7ca197bf98d933ae2f205be3635/packages/tailwindcss/src/compat/default-theme.ts#L162 */
|
||||
$br-none: 0px;
|
||||
$br-sm: 0.125rem;
|
||||
$br-default: 0.25rem;
|
||||
$br-md: 0.375rem;
|
||||
$br-lg: 0.5rem;
|
||||
$br-xl: 0.75rem;
|
||||
$br-2xl: 1rem;
|
||||
$br-3xl: 1.5rem;
|
||||
$br-full: 9999px;
|
12
styles/tailwind/_colors.scss
Normal file
12
styles/tailwind/_colors.scss
Normal file
|
@ -0,0 +1,12 @@
|
|||
/* Tailwind palette */
|
||||
$slate-50: #f8fafc;
|
||||
$slate-100: #f1f5f9;
|
||||
$slate-200: #e2e8f0;
|
||||
$slate-300: #cbd5e1;
|
||||
$slate-400: #94a3b8;
|
||||
$slate-500: #64748b;
|
||||
$slate-600: #475569;
|
||||
$slate-700: #334155;
|
||||
$slate-800: #1e293b;
|
||||
$slate-900: #0f172a;
|
||||
$slate-950: #020617;
|
0
styles/tailwind/_max-width.scss
Normal file
0
styles/tailwind/_max-width.scss
Normal file
6
styles/tailwind/_screens.scss
Normal file
6
styles/tailwind/_screens.scss
Normal file
|
@ -0,0 +1,6 @@
|
|||
/* https://github.com/tailwindlabs/tailwindcss/blob/ac6d4a6e8e9ae7ca197bf98d933ae2f205be3635/packages/tailwindcss/src/compat/default-theme.ts#L885 */
|
||||
$screen-sm: 640px;
|
||||
$screen-md: 768px;
|
||||
$screen-lg: 1024px;
|
||||
$screen-xl: 1280px;
|
||||
$screen-2xl: 1536px;
|
25
styles/tailwind/_spacing.scss
Normal file
25
styles/tailwind/_spacing.scss
Normal file
|
@ -0,0 +1,25 @@
|
|||
/* Yes, it's that simple.
|
||||
* https://tailwindcss.com/docs/customizing-spacing#default-spacing-scale
|
||||
* https://github.com/tailwindlabs/tailwindcss/blob/ac6d4a6e8e9ae7ca197bf98d933ae2f205be3635/packages/tailwindcss/src/compat/default-theme.ts#L909 */
|
||||
@function s($n) {
|
||||
@return 0.25rem * $n;
|
||||
}
|
||||
|
||||
/* https://github.com/tailwindlabs/tailwindcss/blob/ac6d4a6e8e9ae7ca197bf98d933ae2f205be3635/packages/tailwindcss/src/compat/default-theme.ts#L715 */
|
||||
$max-width-none: none;
|
||||
$max-width-xs: 20rem;
|
||||
$max-width-sm: 24rem;
|
||||
$max-width-md: 28rem;
|
||||
$max-width-lg: 32rem;
|
||||
$max-width-xl: 36rem;
|
||||
$max-width-2xl: 42rem;
|
||||
$max-width-3xl: 48rem;
|
||||
$max-width-4xl: 56rem;
|
||||
$max-width-5xl: 64rem;
|
||||
$max-width-6xl: 72rem;
|
||||
$max-width-7xl: 80rem;
|
||||
$max-width-full: 100%;
|
||||
$max-width-min: min-content;
|
||||
$max-width-max: max-content;
|
||||
$max-width-fit: fit-content;
|
||||
$max-width-prose: 65ch;
|
37
styles/tailwind/_text.scss
Normal file
37
styles/tailwind/_text.scss
Normal file
|
@ -0,0 +1,37 @@
|
|||
$font-size-xs: 0.75rem;
|
||||
$font-size-sm: 0.875rem;
|
||||
$font-size-base: 1rem;
|
||||
$font-size-lg: 1.125rem;
|
||||
$font-size-xl: 1.25rem;
|
||||
$font-size-2xl: 1.5rem;
|
||||
$font-size-3xl: 1.875rem;
|
||||
$font-size-4xl: 2.25rem;
|
||||
$font-size-5xl: 3rem;
|
||||
$font-size-6xl: 3.75rem;
|
||||
$font-size-7xl: 4.5rem;
|
||||
$font-size-8xl: 6rem;
|
||||
$font-size-9xl: 8rem;
|
||||
|
||||
$line-height-xs: 1rem;
|
||||
$line-height-sm: 1.25rem;
|
||||
$line-height-base: 1.5rem;
|
||||
$line-height-lg: 1.75rem;
|
||||
$line-height-xl: 1.75rem;
|
||||
$line-height-2xl: 2rem;
|
||||
$line-height-3xl: 2.25rem;
|
||||
$line-height-4xl: 2.5rem;
|
||||
$line-height-5xl: 1;
|
||||
$line-height-6xl: 1;
|
||||
$line-height-7xl: 1;
|
||||
$line-height-8xl: 1;
|
||||
$line-height-9xl: 1;
|
||||
|
||||
$font-weight-thin: 100;
|
||||
$font-weight-extralight: 200;
|
||||
$font-weight-light: 300;
|
||||
$font-weight-normal: 400;
|
||||
$font-weight-medium: 500;
|
||||
$font-weight-semibold: 600;
|
||||
$font-weight-bold: 700;
|
||||
$font-weight-extrabold: 800;
|
||||
$font-weight-black: 900;
|
Loading…
Add table
Add a link
Reference in a new issue