repo stringclasses 254
values | file_path stringlengths 29 241 | code stringlengths 100 233k | tokens int64 14 69.4k |
|---|---|---|---|
gaymeowing/luauberries | gaymeowing-luauberries-056d795/libs/url/init.luau | --!native
--[[
url
utility functions for encoding and decoding urls
]]
export type SpaceEncoding = "+" | "%20"
local FORMAT = string.format
local GMATCH = string.gmatch
local GSUB = string.gsub
local function CHAR_TO_CODE(char: string): string
return FORMAT("%%%02X", string.byte(char))
end
local function COD... | 451 |
gaymeowing/luauberries | gaymeowing-luauberries-056d795/scripts/deep_iter_dir.luau |
--[[
deep iter dir
recursively iterates over a directory and
calls a callback that can then optionally move or change the contents of the file
]]
local read_dir = require("@scripts/read_dir")
local remove = require("@scripts/remove")
local fs = require("@lune/fs")
type BaseFileInfo<N, P> = {
contents: (string |... | 516 |
gaymeowing/luauberries | gaymeowing-luauberries-056d795/scripts/deep_iter_scripts.luau |
--[[
deep iter scripts
recursively iterates over every luau file in a directory
and calls a callback that can then optionally overwrite the file
]]
local deep_iter_dir = require("@scripts/deep_iter_dir")
type IterScriptsCallback = ((path: string, src: string, depth: number) -> string?) |
((path: string, src: str... | 191 |
gaymeowing/luauberries | gaymeowing-luauberries-056d795/scripts/depgraph.luau |
--[[
dep graph
module for generating a dependency graph for all libraries
]]
local deep_iter_scripts = require("@scripts/deep_iter_scripts")
local require_pattern = require("@scripts/require_pattern")
local read_dir = require("@scripts/read_dir")
local remove = require("@scripts/remove")
local process = require("@l... | 620 |
gaymeowing/luauberries | gaymeowing-luauberries-056d795/scripts/depricate/init.luau |
--[[
depricate
makes a library depricated
]]
local process = require("@lune/process")
local fs = require("@lune/fs")
local ARGS = process.args
local ALT_FORMAT = fs.readFile("scripts/depricate/ALT_FORMAT.md")
local FORMAT = fs.readFile("scripts/depricate/FORMAT.md")
local LIB = ARGS[1]
local INSTEAD
for index, ar... | 188 |
gaymeowing/luauberries | gaymeowing-luauberries-056d795/scripts/docs.luau |
--[[
docs
generates sidebar, and homepage
]]
local deep_iter_dir = require("@scripts/deep_iter_dir")
local read_dir = require("@scripts/read_dir")
local gsub = require("@scripts/gsub")
local serde = require("@lune/serde")
local fs = require("@lune/fs")
type SidebarItem = { text: string, link: string }
type Libdoc... | 846 |
gaymeowing/luauberries | gaymeowing-luauberries-056d795/scripts/get_depth_for_path.luau |
--[[
get depth for path
gives how deep a path is (the amount of backslashes it has)
]]
local function get_depth_for_path(path: string)
return #string.split(path, "/")
end
return get_depth_for_path
| 51 |
gaymeowing/luauberries | gaymeowing-luauberries-056d795/scripts/gsub.luau |
--[[
gsub
a function that only gives the first result of string.gsub so the typechecker doesnt scream
]]
type GsubSubsitute =
| { [string]: string }
| ((string) -> string)
| string
--[[
Returns a copy of `s` in which all or the first `n` occurrences of the pattern are replaced with the given replacement.
]]
lo... | 130 |
gaymeowing/luauberries | gaymeowing-luauberries-056d795/scripts/libinfo.luau |
--[[
libinfo
utility func for reading LIBRARY.toml files and providing types for LIBINFOs
]]
local serde = require("@lune/serde")
local fs = require("@lune/fs")
type RuntimeInfo = {
optional: { string }?,
main: string,
}?
type BaseLibInfo<R> = {
tags: { string },
version: string,
runtime: R,
}
type Internal... | 339 |
gaymeowing/luauberries | gaymeowing-luauberries-056d795/scripts/libs_changed.luau |
--[[
libs changed
map of each library thats changed based on if it has a release for its latest version or not
]]
local get_latest_commit = require("@scripts/get_latest_commit")
local richterm = require("@scripts/richterm")
local read_dir = require("@scripts/read_dir")
local libinfo = require("@scripts/libinfo")
lo... | 225 |
gaymeowing/luauberries | gaymeowing-luauberries-056d795/scripts/license.luau |
--[[
license
gives the license file as a code comment
]]
local process = require("@lune/process")
local fs = require("@lune/fs")
local new_line_char = if process.os == "windows" then "\r\n" else "\n"
local tabbed_license = string.gsub(fs.readFile("LICENSE"), new_line_char, "\n\t")
return `--[[\n\t{string.sub(tabb... | 102 |
gaymeowing/luauberries | gaymeowing-luauberries-056d795/scripts/modulify.luau |
--[[
modulify
converts a folder to a module script
]]
local read_dir = require("@scripts/read_dir")
local remove = require("@scripts/remove")
local roblox = require("@lune/roblox")
local fs = require("@lune/fs")
type ModuleScript = roblox.Instance & {
Source: string,
}
type DirInfo = {
instance: roblox.Instance... | 572 |
gaymeowing/luauberries | gaymeowing-luauberries-056d795/scripts/pull_requests.luau |
--[[
pull requests
gets pull requests after a given unix timestamp
]]
local read_dir = require("@scripts/read_dir")
local datetime = require("@lune/datetime")
local summon = require("@scripts/summon")
local serde = require("@lune/serde")
export type PullRequestInfo = {
merged_at: number,
number: number,
author:... | 540 |
gaymeowing/luauberries | gaymeowing-luauberries-056d795/scripts/read_dir.luau |
--[[
read dir
its the same except it removes .DS_Store
]]
local remove = require("@scripts/remove")
local fs = require("@lune/fs")
local function read_dir(path: string): { string }
local contents = fs.readDir(path)
local index = table.find(contents, ".DS_Store")
if index then
remove(contents, index)
end
r... | 87 |
gaymeowing/luauberries | gaymeowing-luauberries-056d795/scripts/remove.luau |
--[[
remove
swap removal func for removing the first index,
if the value doesnt exist it'll error
]]
local function remove<V>(t: { V }, i: number?): V
if not i then
i = 1
end
local v = t[i :: number]
if v ~= nil then
if #t ~= 1 then
t[i :: number] = t[#t]
t[#t] = nil
else
t[1] = nil
end
... | 132 |
gaymeowing/luauberries | gaymeowing-luauberries-056d795/scripts/require_pattern.luau |
--[[
require pattern
module for storing require pattern info, and provides a create function for making a require pattern
]]
local START = "local%s*%w+%s*=%s*require%s*%([\"'`]"
local ENDING = "[\"'`]%)"
local function CREATE(path_pattern: string?): string
return `{START}{path_pattern or "(.-)"}{ENDING}`
end
ret... | 118 |
gaymeowing/luauberries | gaymeowing-luauberries-056d795/scripts/summon.luau |
--[[
summon
small wrapper around lunes process.spawn, that makes it actually error
and sets the shell to the default shell of the os (except macos because it still has bash and bash works fine enough)
]]
local process = require("@lune/process")
local SHELL = if process.os == "windows" then "powershell" else "bash... | 312 |
gaymeowing/luauberries | gaymeowing-luauberries-056d795/scripts/zip.luau |
--[[
zip
utility for zipping folders within lune
]]
local summon = require("@scripts/summon")
local function zip(path: string): string
return summon(`tar -c -z --exclude *.DS_Store {path} `)
end
return zip
| 59 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Addons/InterfaceManager.luau | local httpService = game:GetService("HttpService")
local InterfaceManager = {} do
InterfaceManager.Folder = "FluentRenewedSettings"
InterfaceManager.Settings = {
Theme = "Dark",
Acrylic = true,
Transparency = true,
MenuKeybind = Enum.KeyCode.RightControl
}
function Interf... | 811 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Addons/SaveManager.luau | local httpService = game:GetService("HttpService")
type Dropdown = {Value: any, Values: {i: any}, Multi: boolean, Displayer: (v) -> (n)?, SetValue: (any) -> ()}
local DisplayerParser = {
Encode = function(Value)
local Encoded = {}
for Val: any, Bool: boolean in Value do
table.insert(Encoded, Val)
end
r... | 2,849 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Example.client.luau | local Library = require(game:GetService("ReplicatedStorage"):WaitForChild("Fluent"):WaitForChild("MainModule"))
local Window = Library:Window{
Title = `Fluent {Library.Version}`,
SubTitle = "by Actual Master Oogway",
TabWidth = 160,
Size = UDim2.fromOffset(830, 525),
Resize = true,
Acrylic = tr... | 2,464 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Lune/Build/Lib/BundleModel.luau | -- MIT License | Copyright (c) 2023-2024 Latte Softworks <https://latte.to>
local luau = require("@lune/luau")
local roblox = require("@lune/roblox")
local LuneUtils = require("libraries/LuneUtils")
local Log = LuneUtils.Log
local StringUtils = LuneUtils.StringUtils
local LuaEncode = require("libraries/LuaEncode")
... | 2,053 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Lune/Build/Lib/Data/DefaultDarkluaConfig.luau | local serde = require("@lune/serde")
local Config = {
generator = {
name = "dense",
column_span = 120,
},
rules = {
"convert_index_to_field",
"compute_expression",
"group_local_assignment",
"filter_after_early_return",
"remove_comments",
"remove_empty_do",
"remove_function_call_parens",
"remove... | 157 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Lune/Build/Lib/Data/Template.luau | -- This codegen template *must* be 100% compatible with Lua 5.1x+, NOT just Luau
-- With that being said, this explains the weird cflow in some parts
return [[
-- ++++++++ WAX BUNDLED DATA BELOW ++++++++ --
-- Will be used later for getting flattened globals
local ImportGlobals
-- Holds direct closure data (defining... | 3,702 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Lune/Build/Lib/Libraries/LuneUtils/CommandUtils.luau | -- MIT License | Copyright (c) 2023-2024 Latte Softworks <https://latte.to>
local process = require("@lune/process")
local CommandUtils = {}
function CommandUtils.CommandExists(binary: string): boolean
if process.os ~= "windows" then
-- Unix-compliance is simple!
return process.spawn("type", { binary }, { shell... | 176 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Lune/Build/Lib/Libraries/LuneUtils/EnsureFileTree.luau | -- MIT License | Copyright (c) 2023-2024 Latte Softworks <https://latte.to>
local fs = require("@lune/fs")
--[[
This kinda looks like a strange function, because of the format a "FileTree" accepts:
```lua
EnsureFileTree({
["test"] = {
["test.txt"] = "hi",
["test.json"] = "... | 303 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Lune/Build/Lib/Libraries/LuneUtils/ParseArgs.luau | -- MIT License | Copyright (c) 2023-2024 Latte Softworks <https://latte.to>
type OptionsInput = { [string]: { string | number | boolean | nil } }
type OptionsOutput = { [string]: string | number | boolean | nil }
local process = require("@lune/process")
local Log = require("Log")
local function ParseArgs(args: { st... | 485 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Lune/Build/Lib/Libraries/LuneUtils/RecursiveReadDir.luau | -- MIT License | Copyright (c) 2023-2024 Latte Softworks <https://latte.to>
local fs = require("@lune/fs")
local function RecursiveReadDir(directory: string, _existingFileList: { string }?): { string }
if not string.match(directory, "[/\\]$") then
directory ..= "/"
end
local FileList = _existingFileList or {}
... | 155 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Lune/Build/Lib/Libraries/LuneUtils/Run.luau | -- MIT License | Copyright (c) 2023-2024 Latte Softworks <https://latte.to>
local process = require("@lune/process")
local Log = require("Log")
local function Run(
command: string,
args: { string }?,
directRun: boolean?,
errorHandler: (string?) -> ()?
): process.ExecuteResult
local Args = args or {}
local Dire... | 219 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Lune/Build/Lib/Libraries/LuneUtils/init.luau | -- MIT License | Copyright (c) 2023-2024 Latte Softworks <https://latte.to>
return {
Log = require("Log"),
StringUtils = require("StringUtils"),
CommandUtils = require("CommandUtils"),
WebhookQueue = require("WebhookQueue"),
Run = require("Run"),
ParseArgs = require("ParseArgs"),
EnsureFileTree = require("Ensu... | 97 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Lune/Types/regex.luau | --[=[
@class RegexMatch
A match from a regular expression.
Contains the following values:
- `start` -- The start index of the match in the original string.
- `finish` -- The end index of the match in the original string.
- `text` -- The text that was matched.
- `len` -- The length of the text that was matched... | 1,354 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Components/Assets.luau | return {
Close = "rbxassetid://9886659671",
Min = "rbxassetid://9886659276",
Max = "rbxassetid://9886659406",
Restore = "rbxassetid://9886659001",
}
| 60 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Components/Button.luau | local Root = script.Parent.Parent
local Flipper = require(Root.Packages.Flipper)
local Creator = require(Root.Modules.Creator)
local New = Creator.New
local Spring = Flipper.Spring.new
return function(Theme, Parent, DialogCheck)
local Button = {}
DialogCheck = DialogCheck or false
Button.Title = New("TextLabel",... | 566 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Components/Dialog.luau | local Root = script.Parent.Parent
local Creator = require(Root.Modules.Creator)
local Button_Component = require(Root.Components.Button)
local Signal = require(Root.Packages.Signal)
local New = Creator.New
local Dialog = {
Window = nil,
}
function Dialog:Init(Window)
Dialog.Window = Window
return Dialog
end
func... | 1,253 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Components/Element.luau | local Root = script.Parent.Parent
local Creator = require(Root.Modules.Creator)
local New = Creator.New
return function(Title, Desc, Parent, Hover, Config)
local Element = {
CreatedAt = tick()
}
Config = typeof(Config) == "table" and Config or {}
Element.TitleLabel = New("TextLabel", {
FontFace = Font.new("r... | 1,165 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Components/Notification.luau | local Root = script.Parent.Parent
local Flipper = require(Root.Packages.Flipper)
local Creator = require(Root.Modules.Creator)
local Acrylic = require(Root.Modules.Acrylic)
local Spring = Flipper.Spring.new
local Instant = Flipper.Instant.new
local New = Creator.New
local SoundService = game:GetService("SoundService... | 1,689 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Components/Section.luau | local Root = script.Parent.Parent
local Creator = require(Root.Modules.Creator)
local New = Creator.New
return function(Title, Parent)
local Section = {}
Section.Layout = New("UIListLayout", {
Padding = UDim.new(0, 5),
})
Section.Container = New("Frame", {
Size = UDim2.new(1, 0, 0, 26),
Position = UDim2.f... | 448 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Components/Tab.luau | local Root = script.Parent.Parent
local Flipper = require(Root.Packages.Flipper)
local Creator = require(Root.Modules.Creator)
local New = Creator.New
local Spring = Flipper.Spring.new
local Instant = Flipper.Instant.new
local Components = Root.Components
local TabModule = {
Window = nil,
Tabs = {},
Containers = {... | 1,699 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Components/Textbox.luau | local TextService = game:GetService("TextService")
local Root = script.Parent.Parent
local Flipper = require(Root.Packages.Flipper)
local Creator = require(Root.Modules.Creator)
local New = Creator.New
return function(Parent, Acrylic)
local Textbox = {}
Acrylic = Acrylic or false
Textbox.Input = New("TextBox", {
... | 1,162 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Components/TitleBar.luau | local Root = script.Parent.Parent
local Creator = require(Root.Modules.Creator)
local New = Creator.New
local AddSignal = Creator.AddSignal
return function(Config)
local TitleBar = {}
local Library = require(Root)
local function BarButton(Icon, Pos, Parent, Debounce, Callback)
local Button = {
Callback = Ca... | 2,013 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Components/Window.luau | -- a wise man once said: "i will rewrite this someday"
local Root = script.Parent.Parent
local Flipper = require(Root.Packages.Flipper)
local Creator = require(Root.Modules.Creator)
local Acrylic = require(Root.Modules.Acrylic)
local Signal = require(Root.Packages.Signal)
local Assets = require(script.Parent.Assets)
l... | 4,146 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Elements/Button.luau | local Root = script.Parent.Parent
local Creator = require(Root.Modules.Creator)
local New = Creator.New
local Components = Root.Components
local Element = {}
Element.__index = Element
Element.__type = "Button"
function Element:New(Config)
assert(Config.Title, "Button - Missing Title")
Config.Callback = Config.Cal... | 270 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Elements/Colorpicker.luau | local Players = game:GetService("Players")
local LocalPlayer = Players.LocalPlayer
local Mouse = LocalPlayer:GetMouse()
local Root = script.Parent.Parent
local Creator = require(Root.Modules.Creator)
local New = Creator.New
local Components = Root.Components
local Element = {}
Element.__index = Element
Element.__ty... | 4,927 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Elements/Dropdown.luau | local UserInputService = game:GetService("UserInputService")
local Mouse = game:GetService("Players").LocalPlayer:GetMouse()
local Camera = game:GetService("Workspace").CurrentCamera
local Root = script.Parent.Parent
local Creator = require(Root.Modules.Creator)
local Flipper = require(Root.Packages.Flipper)
local Ne... | 4,506 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Elements/Input.luau | local Root = script.Parent.Parent
local Creator = require(Root.Modules.Creator)
local AddSignal = Creator.AddSignal
local Components = Root.Components
local Element = {}
Element.__index = Element
Element.__type = "Input"
function Element:New(Idx, Config)
local Library = self.Library
assert(Config.Title, "Input - M... | 654 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Elements/Keybind.luau | local UserInputService = game:GetService("UserInputService")
local Root = script.Parent.Parent
local Creator = require(Root.Modules.Creator)
local New = Creator.New
local Components = Root.Components
local Element = {}
Element.__index = Element
Element.__type = "Keybind"
function Element:New(Idx, Config)
local Lib... | 1,720 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Elements/Paragraph.luau | local Root = script.Parent.Parent
local Components = Root.Components
local Element = {}
Element.__index = Element
Element.__type = "Paragraph"
function Element:New(Idx, Config)
local Library = self.Library
assert(Config.Title, "Paragraph - Missing Title")
Config.Content = Config.Content or ""
local Paragraph = {... | 460 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Elements/Slider.luau | local UserInputService = game:GetService("UserInputService")
local Root = script.Parent.Parent
local Creator = require(Root.Modules.Creator)
local New = Creator.New
local Components = Root.Components
local Element = {}
Element.__index = Element
Element.__type = "Slider"
function Element:New(Idx, Config)
local Libra... | 1,454 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Elements/Toggle.luau | local TweenService, UserInputService = game:GetService("TweenService"), game:GetService("UserInputService")
local Root = script.Parent.Parent
local Creator = require(Root.Modules.Creator)
local New = Creator.New
local Components = Root.Components
local Element = {}
Element.__index = Element
Element.__type = "Toggle"... | 2,659 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Elements/init.luau | local Elements = {}
for _, Element in next, script:GetChildren() do
Elements[#Elements + 1] = require(Element)
end
return Elements
| 33 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Modules/Acrylic/AcrylicBlur.luau | local Root = script.Parent.Parent.Parent
local Creator = require(Root.Modules.Creator)
local createAcrylic = require(script.Parent.CreateAcrylic)
local viewportPointToWorld, getOffset = unpack(require(script.Parent.Utils))
local BlurFolder = Instance.new("Folder", game:GetService("Workspace").CurrentCamera)
local fun... | 775 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Modules/Acrylic/AcrylicPaint.luau | local Root = script.Parent.Parent.Parent
local Creator = require(Root.Modules.Creator)
local AcrylicBlur = require(script.Parent.AcrylicBlur)
local New = Creator.New
return function(props)
local AcrylicPaint = {}
AcrylicPaint.Frame = New("Frame", {
Size = UDim2.fromScale(1, 1),
BackgroundTransparency = 0.9,
... | 964 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Modules/Acrylic/CreateAcrylic.luau | local Root = script.Parent.Parent.Parent
local Creator = require(Root.Modules.Creator)
local function createAcrylic()
local Part = Creator.New("Part", {
Name = "Body",
Color = Color3.new(0, 0, 0),
Material = Enum.Material.Glass,
Size = Vector3.new(1, 1, 0),
Anchored = true,
CanCollide = false,
Locked = ... | 173 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Modules/Acrylic/Utils.luau | local function map(value, inMin, inMax, outMin, outMax)
return (value - inMin) * (outMax - outMin) / (inMax - inMin) + outMin
end
local function viewportPointToWorld(location, distance)
local unitRay = game:GetService("Workspace").CurrentCamera:ScreenPointToRay(location.X, location.Y)
return unitRay.Origin + unitRa... | 146 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Modules/Acrylic/init.luau | local Acrylic = {
AcrylicBlur = require(script.AcrylicBlur),
CreateAcrylic = require(script.CreateAcrylic),
AcrylicPaint = require(script.AcrylicPaint),
}
function Acrylic.init()
local baseEffect = Instance.new("DepthOfFieldEffect")
baseEffect.FarIntensity = 0
baseEffect.InFocusRadius = 0.1
baseEffect.NearInten... | 300 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Modules/Creator.luau | local Root = script.Parent.Parent
local Themes = require(Root.Themes)
local Flipper, Ripple = require(Root.Packages.Flipper), require(Root.Packages.Ripple)
local Signal = require(Root.Packages.Signal)
local Creator = {
Registry = {},
Signals = {},
TransparencyMotors = {},
DefaultProperties = {
ScreenGui = {
R... | 1,596 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Abyss.luau | return {
Accent = Color3.fromRGB(102, 136, 204), -- #6688cc
AcrylicMain = Color3.fromRGB(0, 12, 24), -- #000c18
AcrylicBorder = Color3.fromRGB(43, 43, 74), -- #2b2b4a
AcrylicGradient = ColorSequence.new(Color3.fromRGB(0, 12, 24), Color3.fromRGB(0, 12, 24)),
AcrylicNoise = 1,
TitleBarLine = Col... | 785 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Adapta Nokto.luau | return {
Accent = Color3.fromHex("#ec6a3f"),
AcrylicMain = Color3.fromHex("#31312e"),
AcrylicBorder = Color3.fromHex("#403f3a"),
AcrylicGradient = ColorSequence.new(Color3.fromHex("#31312e"), Color3.fromHex("#31312e")),
AcrylicNoise = 1,
TitleBarLine = Color3.fromHex("#403f3a"),
Tab = Colo... | 454 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Ambiance.luau | return {
Accent = Color3.fromHex("#00BCD4"),
AcrylicMain = Color3.fromHex("#29353b"),
AcrylicBorder = Color3.fromHex("#222D32"),
AcrylicGradient = ColorSequence.new(Color3.fromHex("#29353b"), Color3.fromHex("#29353b")),
AcrylicNoise = 1,
TitleBarLine = Color3.fromHex("#222D32"),
Tab = Colo... | 443 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Amethyst Dark.luau | return {
Accent = Color3.fromHex("#b133ff"),
AcrylicMain = Color3.fromHex("#120024"),
AcrylicBorder = Color3.fromHex("#4d057b"),
AcrylicGradient = ColorSequence.new(Color3.fromHex("#120024"), Color3.fromHex("#120024")),
AcrylicNoise = 0.92,
TitleBarLine = Color3.fromHex("#4d057b"),
Tab = C... | 462 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Amethyst.luau | return {
Accent = Color3.fromRGB(97, 62, 167),
AcrylicMain = Color3.fromRGB(20, 20, 20),
AcrylicBorder = Color3.fromRGB(110, 90, 130),
AcrylicGradient = ColorSequence.new(Color3.fromRGB(85, 57, 139), Color3.fromRGB(40, 25, 65)),
AcrylicNoise = 0.92,
TitleBarLine = Color3.fromRGB(95, 75, 110),
Tab = Color3.from... | 567 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Aqua.luau | return {
Accent = Color3.fromRGB(60, 165, 165),
AcrylicMain = Color3.fromRGB(20, 20, 20),
AcrylicBorder = Color3.fromRGB(50, 100, 100),
AcrylicGradient = ColorSequence.new(Color3.fromRGB(60, 140, 140), Color3.fromRGB(40, 80, 80)),
AcrylicNoise = 0.92,
TitleBarLine = Color3.fromRGB(60, 120, 120),
Tab = Color3.f... | 567 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Arc Dark.luau | return {
Accent = Color3.fromHex("#5294e2"),
AcrylicMain = Color3.fromHex("#383c4a"),
AcrylicBorder = Color3.fromHex("#404f7d"),
AcrylicGradient = ColorSequence.new(Color3.fromHex("#383c4a"), Color3.fromHex("#383c4a")),
AcrylicNoise = 1,
TitleBarLine = Color3.fromHex("#404f7d"),
Tab = Colo... | 481 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Dark Typewriter.luau | return {
Accent = Color3.fromRGB(109, 180, 120),
AcrylicMain = Color3.fromRGB(38, 38, 38),
AcrylicBorder = Color3.fromRGB(85, 85, 85),
AcrylicGradient = ColorSequence.new(Color3.fromRGB(38, 38, 38), Color3.fromRGB(38, 38, 38)),
AcrylicNoise = 1,
TitleBarLine = Color3.fromRGB(189, 189, 189),
... | 573 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Dark.luau | return {
Accent = Color3.fromRGB(96, 205, 255),
AcrylicMain = Color3.fromRGB(60, 60, 60),
AcrylicBorder = Color3.fromRGB(90, 90, 90),
AcrylicGradient = ColorSequence.new(Color3.fromRGB(40, 40, 40), Color3.fromRGB(40, 40, 40)),
AcrylicNoise = 0.9,
TitleBarLine = Color3.fromRGB(75, 75, 75),
Tab = Color3.fromRGB(... | 567 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Darker.luau | return {
Accent = Color3.fromRGB(72, 138, 182),
AcrylicMain = Color3.fromRGB(30, 30, 30),
AcrylicBorder = Color3.fromRGB(60, 60, 60),
AcrylicGradient = ColorSequence.new(Color3.fromRGB(25, 25, 25), Color3.fromRGB(15, 15, 15)),
AcrylicNoise = 0.94,
TitleBarLine = Color3.fromRGB(65, 65, 65),
Tab = Color3.fromRGB... | 378 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/DuoTone Dark Earth.luau | return {
Accent = Color3.fromHex("#fecb52"),
AcrylicMain = Color3.fromHex("#2c2826"),
AcrylicBorder = Color3.fromHex("#48413d"),
AcrylicGradient = ColorSequence.new(Color3.fromHex("#2c2826"), Color3.fromHex("#2c2826")),
AcrylicNoise = 1,
TitleBarLine = Color3.fromHex("#48413d"),
Tab = Colo... | 451 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/DuoTone Dark Forest.luau | return {
Accent = Color3.fromHex("#e7f98b"),
AcrylicMain = Color3.fromHex("#2a2d2a"),
AcrylicBorder = Color3.fromHex("#424842"),
AcrylicGradient = ColorSequence.new(Color3.fromHex("#2a2d2a"), Color3.fromHex("#2a2d2a")),
AcrylicNoise = 1,
TitleBarLine = Color3.fromHex("#424842"),
Tab = Colo... | 460 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/DuoTone Dark Sea.luau | return {
Accent = Color3.fromHex("#34FEBB"),
AcrylicMain = Color3.fromHex("#1D262F"),
AcrylicBorder = Color3.fromHex("#303F4F"),
AcrylicGradient = ColorSequence.new(Color3.fromHex("#1D262F"), Color3.fromHex("#1D262F")),
AcrylicNoise = 1,
TitleBarLine = Color3.fromHex("#303F4F"),
Tab = Colo... | 467 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/DuoTone Dark Sky.luau | return {
Accent = Color3.fromHex("#fec38f"),
AcrylicMain = Color3.fromHex("#2c2734"),
AcrylicBorder = Color3.fromHex("#443d51"),
AcrylicGradient = ColorSequence.new(Color3.fromHex("#2c2734"), Color3.fromHex("#2c2734")),
AcrylicNoise = 1,
TitleBarLine = Color3.fromHex("#443d51"),
Tab = Colo... | 458 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/DuoTone Dark Space.luau | return {
Accent = Color3.fromHex("#fe7734"),
AcrylicMain = Color3.fromHex("#24242e"),
AcrylicBorder = Color3.fromHex("#3a3a4a"),
AcrylicGradient = ColorSequence.new(Color3.fromHex("#24242e"), Color3.fromHex("#24242e")),
AcrylicNoise = 1,
TitleBarLine = Color3.fromHex("#3a3a4a"),
Tab = Colo... | 487 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Elementary.luau | return {
Accent = Color3.fromHex("#cb5226"),
AcrylicMain = Color3.fromHex("#eff0f1"),
AcrylicBorder = Color3.fromHex("#e9d18d"),
AcrylicGradient = ColorSequence.new(Color3.fromHex("#eff0f1"), Color3.fromHex("#eff0f1")),
AcrylicNoise = 1,
TitleBarLine = Color3.fromHex("#e9d18d"),
Tab = Colo... | 484 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/GitHub Dark Colorblind.luau | return {
Accent = Color3.fromHex("#1f6feb"), -- focusBorder
AcrylicMain = Color3.fromHex("#010409"), -- sideBar.background
AcrylicBorder = Color3.fromHex("#30363d"), -- titleBar.border
AcrylicGradient = ColorSequence.new(Color3.fromHex("#010409"), Color3.fromHex("#010409")), -- sideBar.background
A... | 631 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/GitHub Dark Default.luau | return {
Accent = Color3.fromHex("#1f6feb"), -- focusBorder
AcrylicMain = Color3.fromHex("#010409"), -- sideBar.background
AcrylicBorder = Color3.fromHex("#30363d"), -- titleBar.border
AcrylicGradient = ColorSequence.new(Color3.fromHex("#010409"), Color3.fromHex("#010409")), -- sideBar.background
... | 628 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/GitHub Dark Dimmed.luau | return {
Accent = Color3.fromHex("#316dca"), -- focusBorder
AcrylicMain = Color3.fromHex("#1c2128"), -- sideBar.background
AcrylicBorder = Color3.fromHex("#444c56"), -- titleBar.border
AcrylicGradient = ColorSequence.new(Color3.fromHex("#1c2128"), Color3.fromHex("#1c2128")), -- sideBar.background
A... | 620 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/GitHub Dark High Contrast.luau | return {
Accent = Color3.fromHex("#409eff"), -- focusBorder
AcrylicMain = Color3.fromHex("#010409"), -- sideBar.background
AcrylicBorder = Color3.fromHex("#7a828e"), -- titleBar.border
AcrylicGradient = ColorSequence.new(Color3.fromHex("#010409"), Color3.fromHex("#010409")), -- sideBar.background
... | 641 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/GitHub Dark.luau | return {
Accent = Color3.fromHex("#005cc5"), -- focusBorder
AcrylicMain = Color3.fromHex("#1f2428"), -- sideBar.background
AcrylicBorder = Color3.fromHex("#1b1f23"), -- titleBar.border
AcrylicGradient = ColorSequence.new(Color3.fromHex("#1f2428"), Color3.fromHex("#1f2428")),-- sideBar.background
A... | 628 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/GitHub Light Colorblind.luau | return {
Accent = Color3.fromHex("#0969da"), -- focusBorder
AcrylicMain = Color3.fromHex("#f6f8fa"), -- textBlockQuote.background
AcrylicBorder = Color3.fromHex("#d0d7de"), -- textBlockQuote.border
AcrylicGradient = ColorSequence.new(Color3.fromHex("#f6f8fa"), Color3.fromHex("#f6f8fa")), -- textBlockQu... | 585 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/GitHub Light Default.luau | return {
Accent = Color3.fromHex("#0969da"), -- focusBorder
AcrylicMain = Color3.fromHex("#f6f8fa"), -- sideBar.background
AcrylicBorder = Color3.fromHex("#d0d7de"), -- titleBar.border
AcrylicGradient = ColorSequence.new(Color3.fromHex("#f6f8fa"), Color3.fromHex("#f6f8fa")), -- sideBar.background
A... | 595 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/GitHub Light High Contrast.luau | return {
Accent = Color3.fromHex("#0349b4"), -- focusBorder
AcrylicMain = Color3.fromHex("#ffffff"), -- sideBar.background
AcrylicBorder = Color3.fromHex("#20252c"), -- titleBar.border
AcrylicGradient = ColorSequence.new(Color3.fromHex("#ffffff"), Color3.fromHex("#ffffff")), -- sideBar.background
A... | 588 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/GitHub Light.luau | return {
Accent = Color3.fromHex("2188ff"), -- focusBorder
AcrylicMain = Color3.fromHex("f6f8fa"), -- sideBar.background
AcrylicBorder = Color3.fromHex("e1e4e8"), -- titleBar.border
AcrylicGradient = ColorSequence.new(Color3.fromHex("f6f8fa"), Color3.fromHex("f6f8fa")), -- sideBar.background
Acryli... | 636 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Light.luau | return {
Accent = Color3.fromRGB(0, 103, 192),
AcrylicMain = Color3.fromRGB(200, 200, 200),
AcrylicBorder = Color3.fromRGB(120, 120, 120),
AcrylicGradient = ColorSequence.new(Color3.fromRGB(255, 255, 255), Color3.fromRGB(255, 255, 255)),
AcrylicNoise = 0.96,
TitleBarLine = Color3.fromRGB(160, 160, 160),
Tab = ... | 567 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Monokai Classic.luau | return {
Accent = Color3.fromHex("#75715E"), -- focusBorder
AcrylicMain = Color3.fromHex("#272822"), -- editor.background
AcrylicBorder = Color3.fromHex("#1e1f1c"), -- titleBar.activeBackground
AcrylicGradient = ColorSequence.new(Color3.fromHex("#272822"), Color3.fromHex("#272822")),
AcrylicNoise =... | 593 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Monokai Dimmed.luau | return {
Accent = Color3.fromHex("#3655b5"), -- focusBorder
AcrylicMain = Color3.fromHex("#1e1e1e"), -- editor.background
AcrylicBorder = Color3.fromHex("#303030"), -- tab.border
AcrylicGradient = ColorSequence.new(Color3.fromHex("#1e1e1e"), Color3.fromHex("#1e1e1e")),
AcrylicNoise = 1,
TitleB... | 590 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Monokai Vibrant.luau | return {
Accent = Color3.fromHex("#528bff"), -- activityBarBadge.background
AcrylicMain = Color3.fromHex("#16171D"), -- editor.background
AcrylicBorder = Color3.fromHex("#181A1F"), -- editorGroup.border
AcrylicGradient = ColorSequence.new(Color3.fromHex("#16171D"), Color3.fromHex("#16171D")),
Acryl... | 611 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Monokai.luau | return {
Accent = Color3.fromHex("#F92672"), -- Using the keyword color as accent
AcrylicMain = Color3.fromHex("#272822"), -- editor.background
AcrylicBorder = Color3.fromHex("#414339"), -- dropdown.background
AcrylicGradient = ColorSequence.new(Color3.fromHex("#272822"), Color3.fromHex("#1e1f1c")), --... | 596 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Rose.luau | return {
Accent = Color3.fromRGB(180, 55, 90),
AcrylicMain = Color3.fromRGB(40, 40, 40),
AcrylicBorder = Color3.fromRGB(130, 90, 110),
AcrylicGradient = ColorSequence.new(Color3.fromRGB(190, 60, 135), Color3.fromRGB(165, 50, 70)),
AcrylicNoise = 0.92,
TitleBarLine = Color3.fromRGB(140, 85, 105),
Tab = Color3.f... | 567 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Solarized Dark.luau | return {
Accent = Color3.fromHex("#2AA198"), -- String color as accent
AcrylicMain = Color3.fromHex("#002B36"), -- editor.background
AcrylicBorder = Color3.fromHex("#073642"), -- editor.lineHighlightBackground
AcrylicGradient = ColorSequence.new(Color3.fromHex("#002B36"), Color3.fromHex("#002B36")),
... | 565 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Solarized Light.luau | return {
Accent = Color3.fromHex("#b58900"), -- Using the extension button color as accent
AcrylicMain = Color3.fromHex("#FDF6E3"), -- editor.background
AcrylicBorder = Color3.fromHex("#DDD6C1"), -- editorGroup.border
AcrylicGradient = ColorSequence.new(Color3.fromHex("#FDF6E3"), Color3.fromHex("#FDF6E... | 620 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Typewriter.luau | return {
Accent = Color3.fromRGB(97, 161, 107),
AcrylicMain = Color3.fromRGB(252, 245, 228),
AcrylicBorder = Color3.fromRGB(189, 189, 189),
AcrylicGradient = ColorSequence.new(Color3.fromRGB(252, 245, 228), Color3.fromRGB(228, 220, 200)),
AcrylicNoise = 1,
TitleBarLine = Color3.fromRGB(189, 18... | 573 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/United GNOME.luau | return {
Accent = Color3.fromHex("#48b258"),
AcrylicMain = Color3.fromHex("#1e1e1e"),
AcrylicBorder = Color3.fromHex("#444444"),
AcrylicGradient = ColorSequence.new(Color3.fromHex("#1e1e1e"), Color3.fromHex("#1e1e1e")),
AcrylicNoise = 0.92,
TitleBarLine = Color3.fromHex("#444444"),
Tab = C... | 444 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/VS Dark.luau | return {
Accent = Color3.fromHex("#007ACC"), -- activityBarBadge.background
AcrylicMain = Color3.fromHex("#1E1E1E"), -- editor.background
AcrylicBorder = Color3.fromHex("#303031"), -- widget.border
AcrylicGradient = ColorSequence.new(Color3.fromHex("#1E1E1E"), Color3.fromHex("#1E1E1E")),
AcrylicNoi... | 584 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/VS Light.luau | return {
Accent = Color3.fromHex("#007ACC"), -- activityBarBadge.background
AcrylicMain = Color3.fromHex("#FFFFFF"), -- editor.background
AcrylicBorder = Color3.fromHex("#919191"), -- checkbox.border
AcrylicGradient = ColorSequence.new(Color3.fromHex("#FFFFFF"), Color3.fromHex("#FFFFFF")),
AcrylicN... | 591 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/VSC Dark Modern.luau | return {
Accent = Color3.fromHex("#0078D4"), -- focusBorder
AcrylicMain = Color3.fromHex("#181818"), -- activityBar.background
AcrylicBorder = Color3.fromHex("#2B2B2B"), -- activityBar.border
AcrylicGradient = ColorSequence.new(Color3.fromHex("#181818"), Color3.fromHex("#181818")), -- activityBar.backg... | 599 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/VSC Dark+.luau | return {
Accent = Color3.fromHex("#DCDCAA"), -- Based on function declarations color
AcrylicMain = Color3.fromHex("#1E1E1E"), -- VS Code's default dark background
AcrylicBorder = Color3.fromHex("#444444"),
AcrylicGradient = ColorSequence.new(Color3.fromHex("#1E1E1E"), Color3.fromHex("#1E1E1E")),
Ac... | 512 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/VSC Light High Contrast.luau | return {
Accent = Color3.fromHex("#5e2cbc"), -- Based on function color
AcrylicMain = Color3.fromHex("#ffffff"), -- Light background
AcrylicBorder = Color3.fromHex("#292929"), -- Based on embedded foreground
AcrylicGradient = ColorSequence.new(Color3.fromHex("#ffffff"), Color3.fromHex("#ffffff")),
... | 475 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/VSC Light Modern.luau | return {
Accent = Color3.fromHex("#005FB8"), -- focusBorder
AcrylicMain = Color3.fromHex("#F8F8F8"), -- activityBar.background
AcrylicBorder = Color3.fromHex("#E5E5E5"), -- activityBar.border
AcrylicGradient = ColorSequence.new(Color3.fromHex("#F8F8F8"), Color3.fromHex("#F8F8F8")),
AcrylicNoise = 1... | 602 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/VSC Light+.luau | return {
Accent = Color3.fromHex("#795E26"), -- Function declarations color
AcrylicMain = Color3.fromHex("#FFFFFF"), -- editor.background
AcrylicBorder = Color3.fromHex("#D4D4D4"), -- menu.border
AcrylicGradient = ColorSequence.new(Color3.fromHex("#FFFFFF"), Color3.fromHex("#FFFFFF")),
AcrylicNoise... | 598 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Viow Arabian Mix.luau | return {
Accent = Color3.fromHex("#7b36e2"),
AcrylicMain = Color3.fromHex("#110e1a"),
AcrylicBorder = Color3.fromHex("#444444"),
AcrylicGradient = ColorSequence.new(Color3.fromHex("#110e1a"), Color3.fromHex("#110e1a")),
AcrylicNoise = 0.92,
TitleBarLine = Color3.fromHex("#444444"),
Tab = C... | 481 |
ActualMasterOogway/Fluent-Renewed | ActualMasterOogway-Fluent-Renewed-b224870/Src/Themes/Viow Arabian.luau | return {
Accent = Color3.fromHex("#7b36e2"),
AcrylicMain = Color3.fromHex("#110e1a"),
AcrylicBorder = Color3.fromHex("#444444"),
AcrylicGradient = ColorSequence.new(Color3.fromHex("#110e1a"), Color3.fromHex("#110e1a")),
AcrylicNoise = 0.92,
TitleBarLine = Color3.fromHex("#444444"),
Tab = C... | 482 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.