Color works again.

This commit is contained in:
Rasmus Rasmussen 2025-02-25 12:57:32 +01:00
parent aa204ec981
commit fad887762e
3 changed files with 8 additions and 18 deletions

View File

@ -2,10 +2,11 @@
import CodeTag from "../../../tags/CodeTag.vue"; import CodeTag from "../../../tags/CodeTag.vue";
import Paragraph from "../../../tags/Paragraph.vue"; import Paragraph from "../../../tags/Paragraph.vue";
import PageStart from "../../../tags/PageStart.vue";
</script> </script>
<template> <template>
<paragraph>Data Types</paragraph> <page-start>Data Types</page-start>
<paragraph>Just like any other programming language that has datatypes, Fortran has datatypes as well. The big difference, from <paragraph>Just like any other programming language that has datatypes, Fortran has datatypes as well. The big difference, from
other languages, of cause, is how they're created and assigned. If you're a developer of, for example, C#, Java or other languages, of cause, is how they're created and assigned. If you're a developer of, for example, C#, Java or
@ -14,11 +15,11 @@ import Paragraph from "../../../tags/Paragraph.vue";
Let's look at a small list of some common types.</paragraph> Let's look at a small list of some common types.</paragraph>
<ul class="mb-6"> <ul class="mb-6">
<li>&gt; <code>integer</code></li> <li>&gt; <code-tag>integer</code-tag></li>
<li>&gt; <code>real</code></li> <li>&gt; <code-tag>real</code-tag></li>
<li>&gt; <code>double precision</code></li> <li>&gt; <code-tag>double precision</code-tag></li>
<li>&gt; <code>logical</code></li> <li>&gt; <code-tag>logical</code-tag></li>
<li>&gt; <code>character</code></li> <li>&gt; <code-tag>character</code-tag></li>
</ul> </ul>
<paragraph><code-tag>integer</code-tag> is, if you hadn't guessed, a whole number. Like most languages, <paragraph><code-tag>integer</code-tag> is, if you hadn't guessed, a whole number. Like most languages,

View File

@ -1,7 +1,5 @@
:root { :root {
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif; font-family: Inter, system-ui, Avenir, Helvetica, Arial;
line-height: 1.5;
font-weight: 400;
font-synthesis: none; font-synthesis: none;
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;

View File

@ -1,20 +1,11 @@
/** @type {import('tailwindcss').Config} */ /** @type {import('tailwindcss').Config} */
export default { export default {
purge: [
'./index.html',
'./src/**/*.{vue,js,ts,jsx,tsx}'
],
content: [ content: [
"./index.html", "./index.html",
"./src/**/*.{js,ts,jsx,tsx,vue}", "./src/**/*.{js,ts,jsx,tsx,vue}",
], ],
theme: { theme: {
extend: { extend: {
colors: {
'ancient': '#d3d0c9',
'ancient_highlight': '#fcf8f5',
'ancient_shadow': '#bababa',
},
padding: { padding: {
'small': '0.075rem', 'small': '0.075rem',
} }