switch to dark

master
howard 2021-04-10 16:16:08 -07:00
parent 6e4bd2548c
commit 7adc50768e
10 changed files with 372 additions and 146 deletions

244
dist/index.css vendored Normal file
View File

@ -0,0 +1,244 @@
/* @tailwind base; */
.bg-gray-50 {
--tw-bg-opacity: 1;
background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
}
.flex {
display: flex;
}
.table {
display: table;
}
.flex-col {
flex-direction: column;
}
.items-center {
align-items: center;
}
.justify-start {
justify-content: flex-start;
}
.justify-center {
justify-content: center;
}
.justify-between {
justify-content: space-between;
}
.h-6 {
height: 1.5rem;
}
.text-lg {
font-size: 1.125rem;
line-height: 1.75rem;
}
.ml-2 {
margin-left: 0.5rem;
}
.mr-auto {
margin-right: auto;
}
.ml-auto {
margin-left: auto;
}
.p-1 {
padding: 0.25rem;
}
.absolute {
position: absolute;
}
.right-0 {
right: 0px;
}
.left-0 {
left: 0px;
}
.top-36 {
top: 9rem;
}
* {
--tw-shadow: 0 0 #0000;
}
* {
--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
--tw-ring-offset-width: 0px;
--tw-ring-offset-color: #fff;
--tw-ring-color: rgba(59, 130, 246, 0.5);
--tw-ring-offset-shadow: 0 0 #0000;
--tw-ring-shadow: 0 0 #0000;
}
.visible {
visibility: visible;
}
.w-6 {
width: 1.5rem;
}
.w-40 {
width: 10rem;
}
.w-full {
width: 100%;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
@keyframes ping {
75%, 100% {
transform: scale(2);
opacity: 0;
}
}
@keyframes pulse {
50% {
opacity: .5;
}
}
@keyframes bounce {
0%, 100% {
transform: translateY(-25%);
animation-timing-function: cubic-bezier(0.8,0,1,1);
}
50% {
transform: none;
animation-timing-function: cubic-bezier(0,0,0.2,1);
}
}
html,
body {
margin: 0;
height: 100%;
font-family: sans-serif;
overflow: hidden;
}
#c {
position: absolute;
width: 100%;
height: 100%;
display: block;
}
#react > div {
}
.btn-red {
cursor: pointer;
--tw-bg-opacity: 1;
background-color: rgba(239, 68, 68, var(--tw-bg-opacity));
}
.btn-red:hover {
--tw-bg-opacity: 1;
background-color: rgba(220, 38, 38, var(--tw-bg-opacity));
}
.btn-red {
--tw-text-opacity: 1;
color: rgba(249, 250, 251, var(--tw-text-opacity));
}
.btn-grn {
cursor: pointer;
--tw-bg-opacity: 1;
background-color: rgba(16, 185, 129, var(--tw-bg-opacity));
}
.btn-grn:hover {
--tw-bg-opacity: 1;
background-color: rgba(5, 150, 105, var(--tw-bg-opacity));
}
.btn-grn {
--tw-text-opacity: 1;
color: rgba(249, 250, 251, var(--tw-text-opacity));
}
.btn-blu {
cursor: pointer;
--tw-bg-opacity: 1;
background-color: rgba(59, 130, 246, var(--tw-bg-opacity));
}
.btn-blu:hover {
--tw-bg-opacity: 1;
background-color: rgba(37, 99, 235, var(--tw-bg-opacity));
}
.btn-blu {
--tw-text-opacity: 1;
color: rgba(249, 250, 251, var(--tw-text-opacity));
}
#labels > div {
position: absolute;
border: solid 1px black;
}
.btn {
cursor: pointer;
--tw-bg-opacity: 1;
background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
}
.btn:hover {
--tw-bg-opacity: 1;
background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
}
.btn {
fill: currentColor;
--tw-text-opacity: 1;
color: rgba(5, 150, 105, var(--tw-text-opacity));
}
.btn:hover {
--tw-text-opacity: 1;
color: rgba(4, 120, 87, var(--tw-text-opacity));
}
@media (min-width: 640px) {
}
@media (min-width: 768px) {
}
@media (min-width: 1024px) {
}
@media (min-width: 1280px) {
}
@media (min-width: 1536px) {
}

View File

@ -9,9 +9,9 @@ import Stats from './stats.module.js';
import { add3DPoint } from './datums' import { add3DPoint } from './datums'
import { extrude } from './extrude' import { extrude } from './extrude'
import { onHover, onPick } from './mouseEvents'; import { onHover, onPick } from './mouseEvents';
import { _vec2, _vec3, color, awaitSelection, ptObj} from './shared' import { _vec2, _vec3, color, awaitSelection, ptObj } from './shared'
import {AxesHelper} from './axes' import { AxesHelper } from './axes'
import CSG from "./three-csg.js" import CSG from "./three-csg.js"
@ -38,7 +38,7 @@ export class Scene {
this.rect = this.canvas.getBoundingClientRect().toJSON() this.rect = this.canvas.getBoundingClientRect().toJSON()
this.renderer = new THREE.WebGLRenderer({ canvas: this.canvas, antialias:true }); this.renderer = new THREE.WebGLRenderer({ canvas: this.canvas });
const size = 1; const size = 1;
const near = 0; const near = 0;
@ -60,81 +60,68 @@ export class Scene {
this.obj3d = new THREE.Scene() this.obj3d = new THREE.Scene()
this.obj3d.background = new THREE.Color(color.background); // this.obj3d.background = new THREE.Color(color.background);
const helpersGroup = new THREE.Group(); const helpersGroup = new THREE.Group();
helpersGroup.name = "helpersGroup"; helpersGroup.name = "helpers";
this.obj3d.add(helpersGroup); this.obj3d.add(helpersGroup);
for (let i=0; i<4;i ++) { for (let i = 0; i < 4; i++) {
const freePt = ptObj() const freePt = ptObj()
freePt.matrixAutoUpdate = false freePt.matrixAutoUpdate = false
freePt.material.size=8 freePt.material.size = 4
freePt.material.color.set(color.selpoint)
freePt.visible = false freePt.visible = false
freePt.depthTest = false freePt.depthTest = false
freePt.userData.type = 'point' freePt.userData.type = 'selpoint'
helpersGroup.add(freePt); helpersGroup.add(freePt);
} }
this.fptIdx = 0; this.fptIdx = 0;
this.fptObj = {} this.fptObj = {}
this.axes = new AxesHelper(this.camera.zoom)
this.axes.visible = false
helpersGroup.add(this.axes);
const planeGeom = new THREE.PlaneGeometry(5, 5) const planeGeom = new THREE.PlaneGeometry(5, 5)
const pxy = new THREE.Mesh( const pxy = new THREE.Mesh(
planeGeom, planeGeom,
new THREE.MeshBasicMaterial({ new THREE.MeshBasicMaterial({
color: color.plane, color: color.plane,
opacity: 0.05, opacity: 0.02,
side: THREE.DoubleSide, side: THREE.DoubleSide,
transparent: true, transparent: true,
depthWrite: false, depthWrite: false,
toneMapped: false toneMapped: false
}) })
); );
pxy.userData.type = 'plane'
pxy.layers.enable(1)
pxy.add( pxy.add(
new THREE.LineSegments( new THREE.LineSegments(
new THREE.EdgesGeometry(planeGeom), new THREE.EdgesGeometry(planeGeom),
new THREE.LineBasicMaterial({ color: color.planeBorder }) new THREE.LineBasicMaterial({ color: color.planeBorder })
) )
) )
pxy.userData.type = 'plane'
pxy.layers.enable(1)
pxy.children[0].layers.disable(1)
const pyz = pxy.clone().rotateY(Math.PI / 2); const pyz = pxy.clone().rotateY(Math.PI / 2);
pyz.material = pyz.material.clone();
const pxz = pxy.clone().rotateX(-Math.PI / 2); const pxz = pxy.clone().rotateX(-Math.PI / 2);
pxz.material = pxz.material.clone();
helpersGroup.add(pxy); helpersGroup.add(pxy);
helpersGroup.add(pyz); [pxz, pyz].forEach(e => {
helpersGroup.add(pxz); e.traverse(f => f.material = f.material.clone())
helpersGroup.add(e);
});
this.axes = new AxesHelper(this.camera.zoom)
this.axes.visible = false
helpersGroup.add(this.axes);
const dist = 50
const light1 = new THREE.PointLight(color.lighting, 0.7);
const intensity = 0.5; light1.position.set(dist, dist, dist);
const light1 = new THREE.DirectionalLight(color.lighting, intensity);
light1.position.set(10, 10, 10);
this.obj3d.add(light1); this.obj3d.add(light1);
const light2 = new THREE.PointLight(color.lighting, 0.6);
const light2 = new THREE.DirectionalLight(color.lighting, intensity); light2.position.set(-dist, -dist, -dist);
light2.position.set(-10, -10, -5);
this.obj3d.add(light2); this.obj3d.add(light2);
const ambient = new THREE.AmbientLight(color.lighting, intensity);
this.obj3d.add(ambient);
this.render = render.bind(this); this.render = render.bind(this);
@ -212,14 +199,25 @@ export class Scene {
clearSelection() { clearSelection() {
for (let x = 0; x < this.selected.length; x++) { for (let x = 0; x < this.selected.length; x++) {
const obj = this.selected[x] const obj = this.selected[x]
if (obj.userData.type == 'plane') {
obj.material.opacity = 0.05
obj.children[0].material.color.set(color['planeBorder'])
} else {
obj.material.color.set(color[obj.userData.type]) obj.material.color.set(color[obj.userData.type])
if (obj.userData.type == 'point') obj.visible = false }
if (obj.userData.type == 'selpoint') obj.visible = false
} }
this.selected = [] this.selected = []
for (let x = 0; x < this.hovered.length; x++) { for (let x = 0; x < this.hovered.length; x++) {
const obj = this.selected[x] const obj = this.selected[x]
obj.material.color.set(color[obj.userData.type]) obj.material.color.set(color[obj.userData.type])
if (obj.userData.type == 'plane') {
obj.material.opacity = 0.05
obj.children[0].material.color.set(color['planeBorder'])
} else {
obj.material.color.set(color[obj.userData.type])
}
} }
this.obj3d.dispatchEvent({ type: 'change' }) this.obj3d.dispatchEvent({ type: 'change' })
@ -227,11 +225,11 @@ export class Scene {
subtract (m1, m2) { subtract(m1, m2) {
let bspA = CSG.fromMesh(m1) let bspA = CSG.fromMesh(m1)
let bspB = CSG.fromMesh(m2) let bspB = CSG.fromMesh(m2)
m1.traverse(e=>e.layers.disableAll()) m1.traverse(e => e.layers.disableAll())
m2.traverse(e=>e.layers.disableAll()) m2.traverse(e => e.layers.disableAll())
// // Subtract one bsp from the other via .subtract... other supported modes are .union and .intersect // // Subtract one bsp from the other via .subtract... other supported modes are .union and .intersect
@ -244,19 +242,14 @@ export class Scene {
mesh.name = `${m1.name}-${m2.name}` mesh.name = `${m1.name}-${m2.name}`
mesh.layers.enable(1) mesh.layers.enable(1)
const edges = new THREE.EdgesGeometry( mesh.geometry, 15 );
edges.type = 'BufferGeometry'
edges.parameters = undefined
const line = new THREE.LineSegments( edges, new THREE.LineBasicMaterial( { color: 0x000000 } ) );
line.userData.type = 'line'
// const vertices = new THREE.Points( edges, new THREE.PointsMaterial({ color: 0x000000, size:4}) ); const vertices = new THREE.Points(mesh.geometry, new THREE.PointsMaterial());
const vertices = new THREE.Points( edges, new THREE.PointsMaterial() );
vertices.userData.type = 'point' vertices.userData.type = 'point'
vertices.layers.disable(0)
vertices.layers.enable(1) vertices.layers.enable(1)
mesh.add(line) // mesh.add(line)
mesh.add(vertices) mesh.add(vertices)
@ -280,7 +273,7 @@ function render() {
} }
this.axes.resize(this.camera.zoom) if (this.axes) this.axes.resize(this.camera.zoom)
this.renderer.render(this.obj3d, this.camera); this.renderer.render(this.obj3d, this.camera);
@ -320,7 +313,7 @@ async function addSketch() {
let sketch; let sketch;
const references = await this.awaitSelection({ point: 3 }, { plane: 1 }); const references = await this.awaitSelection({ selpoint: 3 }, { plane: 1 });
if (!references) return; if (!references) return;

View File

@ -1,4 +1,4 @@
import {color} from './shared'
export async function setCoincident() { export async function setCoincident() {
let selection = await this.awaitSelection({ point: 2 }, { point: 1, line: 1 }) let selection = await this.awaitSelection({ point: 2 }, { point: 1, line: 1 })
@ -32,11 +32,11 @@ export async function setCoincident() {
this.solve() this.solve()
this.updateBoundingSpheres() this.updateBoundingSpheres()
// update state of points for (let x = 0; x < this.selected.length; x++) {
// for (let obj of this.selected) { const obj = this.selected[x]
// obj.geometry.computeBoundingSphere() obj.material.color.set(color[obj.userData.type])
// obj.material.color.set(0x555555) }
// }
this.selected = [] this.selected = []
this.obj3d.dispatchEvent({ type: 'change' }) this.obj3d.dispatchEvent({ type: 'change' })
} }

View File

@ -79,8 +79,8 @@ export function extrude(sketch) {
const geometry = new THREE.ExtrudeGeometry(shape, extrudeSettings); const geometry = new THREE.ExtrudeGeometry(shape, extrudeSettings);
const material = new THREE.MeshLambertMaterial({ // const material = new THREE.MeshLambertMaterial({
// const material = new THREE.MeshPhongMaterial({ const material = new THREE.MeshPhongMaterial({
color: color.mesh, color: color.mesh,
emissive: color.emissive, emissive: color.emissive,
// flatShading:true, // flatShading:true,
@ -90,39 +90,16 @@ export function extrude(sketch) {
mesh.userData.type = 'mesh' mesh.userData.type = 'mesh'
mesh.layers.enable(1) mesh.layers.enable(1)
const edges = new THREE.EdgesGeometry( geometry, 15 ); const vertices = new THREE.Points( mesh.geometry, new THREE.PointsMaterial() );
edges.type = 'BufferGeometry'
edges.parameters = undefined
const line = new THREE.LineSegments( edges, new THREE.LineBasicMaterial( { color: 0x000000 } ) );
line.userData.type = 'line'
const vertices = new THREE.Points( edges, new THREE.PointsMaterial() );
vertices.userData.type = 'point' vertices.userData.type = 'point'
vertices.layers.disable(0)
vertices.layers.enable(1) vertices.layers.enable(1)
mesh.add(line)
mesh.add(vertices) mesh.add(vertices)
// for (let i = 0; i < offSetPts.length; i += 2) {
// if (
// offSetPts[i] == offSetPts[i - 2] &&
// offSetPts[i + 1] == offSetPts[i - 1]
// ) continue;
// mesh.add(
// ptObj([offSetPts[i], offSetPts[i + 1], 0], false),
// ptObj([offSetPts[i], offSetPts[i + 1], 8], false),
// )
// }
mesh.matrixAutoUpdate = false; mesh.matrixAutoUpdate = false;
mesh.matrix.multiply(sketch.obj3d.matrix) mesh.matrix.multiply(sketch.obj3d.matrix)
this.obj3d.add(mesh) this.obj3d.add(mesh)
this.render() this.render()
// sketch.visible = false // sketch.visible = false

View File

@ -57,18 +57,15 @@ export function onHover(e) {
for (let x = 0; x < this.hovered.length; x++) { // first clear old hovers that are not selected for (let x = 0; x < this.hovered.length; x++) { // first clear old hovers that are not selected
const obj = this.hovered[x] const obj = this.hovered[x]
if (!this.selected.includes(obj)) { if (typeof obj == 'object' && !this.selected.includes(obj)) {
if (typeof obj == 'object') { if (obj.userData.type == 'plane') {
obj.material.opacity = 0.02
obj.children[0].material.color.set(color['planeBorder'])
} else {
obj.material.color.set(color[obj.userData.type]) obj.material.color.set(color[obj.userData.type])
if (this.obj3d.userData.type != 'sketch') {
if (obj.userData.type == 'mesh') {
obj.children[0].material.color.set(color['line'])
} }
} }
} }
}
}
this.hovered = [] this.hovered = []
for (let x = 0; x < idx.length; x++) { for (let x = 0; x < idx.length; x++) {
@ -79,9 +76,10 @@ export function onHover(e) {
} else { } else {
if (obj.userData.type == 'mesh') { if (obj.userData.type == 'mesh') {
obj.children[0].material.color.set(hoverColor['line']) obj.material.color.set(color['meshTempHover'])
} else if (obj.userData.type == 'plane') { } else if (obj.userData.type == 'plane') {
obj.material.color.set(hoverColor[obj.userData.type]) obj.material.opacity = 0.06
obj.children[0].material.color.set(hoverColor['planeBorder'])
} else if (obj.userData.type == 'point') { } else if (obj.userData.type == 'point') {
ptLoc = obj.geometry.attributes.position.array ptLoc = obj.geometry.attributes.position.array
@ -116,14 +114,12 @@ export function onHover(e) {
for (let x = 0; x < this.hovered.length; x++) { for (let x = 0; x < this.hovered.length; x++) {
const obj = this.hovered[x] const obj = this.hovered[x]
if (!this.selected.includes(obj)) { if (typeof obj == 'object' && !this.selected.includes(obj)) {
if (typeof obj == 'object') { if (obj.userData.type == 'plane') {
obj.material.opacity = 0.02
obj.children[0].material.color.set(color['planeBorder'])
} else {
obj.material.color.set(color[obj.userData.type]) obj.material.color.set(color[obj.userData.type])
if (this.obj3d.userData.type != 'sketch') {
if (obj.userData.type == 'mesh') {
obj.children[0].material.color.set(color['line'])
}
}
} }
} }
} }
@ -149,7 +145,10 @@ export function onPick(e) {
this.selected.push(obj) this.selected.push(obj)
} else { } else {
if (typeof obj == 'object') { if (typeof obj == 'object') {
if (obj.userData.type == "mesh") { if (obj.userData.type == 'plane') {
obj.material.opacity = 0.06
obj.children[0].material.color.set(hoverColor['planeBorder'])
} else {
obj.material.color.set(hoverColor[obj.userData.type]) obj.material.color.set(hoverColor[obj.userData.type])
} }
} else { } else {
@ -200,11 +199,14 @@ export function onPick(e) {
for (let x = 0; x < this.selected.length; x++) { for (let x = 0; x < this.selected.length; x++) {
const obj = this.selected[x] const obj = this.selected[x]
obj.material.color.set(color[obj.userData.type]) obj.material.color.set(color[obj.userData.type])
if (this.obj3d.userData.type != 'sketch') { if (obj.userData.type == 'selpoint') {
if (obj.userData.type == 'mesh') {
obj.children[0].material.color.set(color['line'])
} else if (obj.userData.type == 'point') {
obj.visible = false obj.visible = false
} else {
if (obj.userData.type == 'plane') {
obj.material.opacity = 0.02
obj.children[0].material.color.set(color['planeBorder'])
} else {
obj.material.color.set(color[obj.userData.type])
} }
} }
} }

View File

@ -42,7 +42,7 @@ body {
#labels > div { #labels > div {
position: absolute; position: absolute;
border: solid 1px black; color: white;
} }
.btn { .btn {
@ -63,11 +63,12 @@ body {
.btn-green { .btn-green {
cursor: pointer; cursor: pointer;
@apply fill-current @apply fill-current
bg-transparent text-gray-700 bg-transparent text-gray-200
hover:bg-gray-300 hover:text-green-200; hover:bg-transparent hover:text-green-200;
} }
.tooltip { .tooltip {
position: fixed; position: fixed;
display: block; display: block;
@ -77,6 +78,7 @@ body {
border-radius: 4px; border-radius: 4px;
padding: 4px; padding: 4px;
visibility: hidden; visibility: hidden;
border: solid 1px white;
} }
@ -86,6 +88,6 @@ body {
left: 50%; left: 50%;
margin-left: -6px; margin-left: -6px;
border: solid 6px transparent; border: solid 6px transparent;
border-bottom-color: black; border-bottom-color: white;
border-top: none; border-top: none;
} }

View File

@ -32,10 +32,9 @@ export const NavBar = () => {
activeSketchId ? activeSketchId ?
[MdDone, () => { [MdDone, () => {
treeEntries.byId[activeSketchId].deactivate() treeEntries.byId[activeSketchId].deactivate()
dispatch({ type: 'update-descendents', sketch}) // dispatch({ type: 'update-descendents', sketch})
sc.activeSketch = null sc.activeSketch = null
sc.render()
// sc.activeDim = this.activeSketch.obj3d.children[1].children // sc.activeDim = this.activeSketch.obj3d.children[1].children
}, 'Finish'] : }, 'Finish'] :
[FaEdit, sc.addSketch, 'Sketch [s]'] [FaEdit, sc.addSketch, 'Sketch [s]']
@ -60,7 +59,7 @@ export const NavBar = () => {
const [_, forceUpdate] = useReducer(x => x + 1, 0); const [_, forceUpdate] = useReducer(x => x + 1, 0);
return <div className='topNav flex justify-center items-center bg-gray-800'> return <div className='topNav flex justify-center items-center bg-gray-700'>
{ {
btnz.map(([Icon, fcn, txt, shortcut], idx) => ( btnz.map(([Icon, fcn, txt, shortcut], idx) => (
<Icon className="btn w-auto h-full p-3.5" tooltip={txt} <Icon className="btn w-auto h-full p-3.5" tooltip={txt}

View File

@ -9,7 +9,7 @@ import { FaCube, FaEdit } from 'react-icons/fa'
export const Tree = () => { export const Tree = () => {
const treeEntries = useSelector(state => state.treeEntries) const treeEntries = useSelector(state => state.treeEntries)
return <div className='sideNav flex flex-col'> return <div className='sideNav flex flex-col bg-gray-800'>
{treeEntries.allIds.map((entId, idx) => ( {treeEntries.allIds.map((entId, idx) => (
<TreeEntry key={idx} entId={entId} /> <TreeEntry key={idx} entId={entId} />
))} ))}
@ -48,7 +48,7 @@ const TreeEntry = ({ entId }) => {
// const vis = obj3d.visible // const vis = obj3d.visible
const vis = obj3d.layers.mask & 1 const vis = obj3d.layers.mask & 1
return <div className='btn-light select-none flex justify-start w-full h-7 items-center text-sm' return <div className='btn select-none flex justify-start w-full h-7 items-center text-sm'
onDoubleClick={() => { onDoubleClick={() => {
activeSketchId && treeEntries[activeSketchId].deactivate() activeSketchId && treeEntries[activeSketchId].deactivate()
@ -59,7 +59,7 @@ const TreeEntry = ({ entId }) => {
}} }}
> >
<Icon className='h-full w-auto p-1.5' /> <Icon className='h-full w-auto p-1.5' />
<div className="btn-light pl-1" <div className="btn pl-1"
onPointerEnter={() => { onPointerEnter={() => {
if (entId[0] == 'm') { if (entId[0] == 'm') {
// entry.material.color.set(color.hover) // entry.material.color.set(color.hover)

View File

@ -12,27 +12,28 @@ raycaster.params.Points.threshold = 0.1;
const color = { const color = {
background:0xdae1e7, background: 0x18181B,
lighting: 0xFFFFFF, lighting: 0xFFFFFF,
emissive: 0x072534, emissive: 0x072534,
meshTempHover: 0x9DCFED,
hover: 0x00ff00, point: 0xffffff,
point: 0x555555, //points selpoint: 0xff0000,
line: 0x000000, //lines line: 0xffffff,
mesh: 0x9DCFED, //mesh: mesh: 0x9DCFED,
dimension: 0x0000ff, // dimension: 0x0000ff,
plane: 0xffff00,
plane: 0x88adcd, // planeBorder: 0x2e2e00,
planeBorder: 0xa7cae8, //
} }
const hoverColor = { const hoverColor = {
hover: 0x00ff00, point: 0x00ff00,
point: 0x00ff00, //points selpoint: 0xff0000,
line: 0x00ff00, //lines line: 0x00ff00,
mesh: 0xFAB601, //mesh: mesh: 0xFAB601,
dimension: 0x00ff00, // dimension: 0x00ff00,
plane: 0x005dff, // plane: 0xffff00,
planeBorder: 0x919100,
} }

View File

@ -1,3 +1,5 @@
const colors = require('tailwindcss/colors')
module.exports = { module.exports = {
purge: [ purge: [
'./src/**/*.jsx', './src/**/*.jsx',
@ -6,6 +8,12 @@ module.exports = {
darkMode: false, // or 'media' or 'class' darkMode: false, // or 'media' or 'class'
theme: { theme: {
extend: {}, extend: {},
colors: {
transparent: 'transparent',
current: 'currentColor',
gray: colors.trueGray,
green: colors.emerald,
}
}, },
variants: { variants: {
extend: {}, extend: {},