Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugoTestModule2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-09-08 14:20:10 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-09-09 20:23:20 +0300
commit0c98f0ba78a9686ea2eba5030d34a44193d49d7d (patch)
tree079af5c57d9705644cfd1978fc5c277a938da2d8 /tailwind.config.js
parent9657d7697877a45b8d41179418b250746c30261e (diff)
Add some dummy config.js files
Diffstat (limited to 'tailwind.config.js')
-rw-r--r--tailwind.config.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/tailwind.config.js b/tailwind.config.js
new file mode 100644
index 0000000..b624f6c
--- /dev/null
+++ b/tailwind.config.js
@@ -0,0 +1,19 @@
+console.warn('In tailwind.config.js, root.');
+
+const { colors } = require('tailwindcss/defaultTheme');
+
+module.exports = {
+ theme: {
+ colors: {
+ pretty: '#5c6ac4'
+ },
+ extend: {
+ colors: {
+ blue: {
+ ...colors.blue,
+ '900': '#1e3656'
+ }
+ }
+ }
+ }
+};