diff --git a/src/base/fonts/_font-family.scss b/src/base/fonts/_font-family.scss new file mode 100644 index 0000000..4d30499 --- /dev/null +++ b/src/base/fonts/_font-family.scss @@ -0,0 +1,7 @@ +$primary-font: Arial, sans-serif; +$alt-font: georgia, sans-serif; + +$font-family: ( + "primary": $primary-font, + "alt": $alt-font, +) \ No newline at end of file diff --git a/src/base/fonts/_font-height.scss b/src/base/fonts/_font-height.scss new file mode 100644 index 0000000..9b4de35 --- /dev/null +++ b/src/base/fonts/_font-height.scss @@ -0,0 +1,15 @@ +@use '../../functions/functions' as size; + +$line-height-4v: size.convert(20px); +$line-height-5v: size.convert(22px); +$line-height-6v: size.convert(24px); +$line-height-7v: size.convert(28px); +$line-height-8v: size.convert(32px); +$line-height-9v: size.convert(36px); +$line-height-10v: size.convert(40px); +$line-height-12v: size.convert(48px); +$line-height-14v: size.convert(56px); +$line-height-16v: size.convert(64px); +$line-height-18v: size.convert(72px); +$line-height-20v: size.convert(80px); +$line-height-22v: size.convert(88px); \ No newline at end of file diff --git a/src/base/fonts/_font-size.scss b/src/base/fonts/_font-size.scss new file mode 100644 index 0000000..ca163ea --- /dev/null +++ b/src/base/fonts/_font-size.scss @@ -0,0 +1,18 @@ +@use '../../functions/functions' as size; + +$type-scale-12: size.convert(12px); +$type-scale-14: size.convert(14px); +$type-scale-16: size.convert(16px); +$type-scale-18: size.convert(18px); +$type-scale-20: size.convert(20px); +$type-scale-22: size.convert(22px); +$type-scale-24: size.convert(24px); +$type-scale-28: size.convert(28px); +$type-scale-32: size.convert(32px); +$type-scale-40: size.convert(40px); +$type-scale-44: size.convert(44px); +$type-scale-48: size.convert(48px); +$type-scale-56: size.convert(56px); +$type-scale-64: size.convert(64px); +$type-scale-72: size.convert(72px); +$type-scale-80: size.convert(80px); \ No newline at end of file diff --git a/src/base/fonts/_font-weight.scss b/src/base/fonts/_font-weight.scss new file mode 100644 index 0000000..c32dff6 --- /dev/null +++ b/src/base/fonts/_font-weight.scss @@ -0,0 +1,4 @@ +$font-weight-light: 300; +$font-weight-regular: 400; +$font-weight-bold: 600; +$font-weight-xx-bold: 900; \ No newline at end of file