This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import json | |
import re | |
import shutil | |
from pathlib import Path | |
from datetime import datetime | |
from argparse import ArgumentParser | |
from html import escape | |
MY_NAME = "YOUR NAME AS IT IS ON FB HERE" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fab fa-500px | |
fab fa-accessible-icon | |
fab fa-accusoft | |
fab fa-acquisitions-incorporated | |
fas fa-ad | |
fas fa-address-book | |
fas fa-address-card | |
fas fa-adjust | |
fab fa-adn | |
fab fa-adobe |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Functions first | |
@import "bootstrap/scss/functions"; | |
// Required Bootstrap imports | |
@import "bootstrap/scss/variables"; | |
@import "bootstrap/scss/mixins"; | |
// Optional components | |
@import "bootstrap/scss/utilities"; | |
@import "bootstrap/scss/reboot"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Base Colors | |
$primary: #8a81fd !default; | |
$secondary: #1f1f1f !default; | |
$success: #4ffdb3 !default; | |
$info: #68a8fd !default; | |
$warning: #fcb24f !default; | |
$danger: #fc5c4f !default; | |
$light: #f8f8f2 !default; | |
$dark: #282a36 !default; | |
$gray: #555555 !default; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Dracula Theme | |
$primary: #bd93f9 !default; | |
$secondary: #6272a4 !default; | |
$success: #50fa7b !default; | |
$info: #8be9fd !default; | |
$warning: #f1fa8c !default; | |
$danger: #ff5555 !default; | |
$light: #f8f8f2 !default; | |
$dark: #282a36 !default; | |
$gray: #44475a !default; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
plugins: { | |
tailwindcss: { | |
config: './tailwind.config.js', | |
css: [ | |
'./resources/css/site.css', | |
'./resources/css/tailwind.css', | |
], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let defaultTheme = require('tailwindcss/defaultTheme'); | |
let colors = require('tailwindcss/colors'); | |
let tailwindMultiTheme = require('tailwindcss-multi-theme'); | |
let tailwindBrandColors = require('tailwindcss-brand-colors'); | |
module.exports = { | |
content: [ | |
'./resources/**/*.antlers.html', | |
'./resources/**/*.antlers.php', | |
'./resources/**/*.blade.php', | |
'./resources/**/*.vue', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Root Colors | |
$root{ | |
$primary: #3b82f6; | |
$secondary: #64748b; | |
$success: #10b981; | |
$info: #3b82f6; | |
$warning: #f59e0b; | |
$danger: #ef4444; | |
$light: #f9fafb; | |
$dark: #1f2937; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"preset": "laravel", | |
"rules": { | |
"blank_line_before_statement": { | |
"statements": [ | |
"return", | |
"try" | |
] | |
}, | |
"concat_space": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.material-red.lighten-5 { | |
background-color: #ffebee; | |
} | |
.material-red-text.text-lighten-5 { | |
color: #ffebee; | |
} | |
.material-red-border.border-lighten-5 { | |
border-color: #ffebee; |
NewerOlder