Personal-Website/src/fragments.js
2021-07-12 18:54:08 -07:00

13 lines
229 B
JavaScript

import { graphql } from "gatsby";
export const VibrantColorsFragment = graphql`
fragment VibrantColors on FileFieldsImageMetaVibrant {
DarkMuted
DarkVibrant
LightMuted
LightVibrant
Vibrant
Muted
}
`;